Add ERR_MEMORY exit code to show that there was not enough memory; fix debug.stm build

This commit is contained in:
Ilmir Usmanov
2014-07-28 19:39:11 +04:00
parent d927d3e320
commit 1b6638f073
4 changed files with 7 additions and 1 deletions
+1
View File
@@ -53,6 +53,7 @@ typedef enum
ERR_INT_LITERAL = -7,
ERR_STRING = -8,
ERR_PARSER = -9,
ERR_MEMORY = -10,
ERR_GENERAL = -255
} jerry_status_t;