Adding is_strict flag to interpreter context.

This commit is contained in:
Ruben Ayrapetyan
2014-07-21 20:24:48 +04:00
parent 7e87a1fde0
commit 7a0612d441
3 changed files with 9 additions and 9 deletions
+2
View File
@@ -47,6 +47,8 @@ run_int (void)
int_data.this_binding_p = NULL;
int_data.lex_env_p = ecma_CreateLexicalEnvironment( NULL,
ECMA_LEXICAL_ENVIRONMENT_DECLARATIVE);
FIXME( Strict mode );
int_data.is_strict = false;
ecma_CompletionValue_t completion = run_int_from_pos( &int_data);