Merge line-by-line parser

This commit is contained in:
Ilmir Usmanov
2014-07-09 16:17:42 +04:00
parent 823432664e
commit f46d5b440c
24 changed files with 2416 additions and 3404 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ extern uint32_t jerry_UnreferencedExpression;
/**
* Mark for unreachable points and unimplemented cases
*/
#define JERRY_UNREACHABLE() { JERRY_ASSERT( false); __builtin_trap(); }
#define JERRY_UNREACHABLE() do { JERRY_ASSERT( false); __builtin_trap(); } while (0)
#define JERRY_UNIMPLEMENTED() JERRY_UNREACHABLE()
/**