Implementing var_decl opcode.

This commit is contained in:
Ruben Ayrapetyan
2014-07-17 22:02:07 +04:00
parent 383853c116
commit f7abe7190d
6 changed files with 65 additions and 15 deletions
+2 -2
View File
@@ -27,8 +27,8 @@ opfunc __opfuncs[LAST_OP];
struct __int_data
{
int pos; /**< current opcode to execute */
ecma_Object_t *pThisBinding; /**< this binding for current context */
ecma_Object_t *pLexEnv; /**< current lexical environment */
ecma_Object_t *this_binding_p; /**< this binding for current context */
ecma_Object_t *lex_env_p; /**< current lexical environment */
int *root_op_addr; /**< pointer to first opcode saved */
};