Add support of function expressions scopes. Uncomment tests.

This commit is contained in:
Ilmir Usmanov
2014-10-21 22:22:04 +04:00
parent 62a42fa087
commit ec6572d501
5 changed files with 38 additions and 2 deletions
+7 -2
View File
@@ -1663,12 +1663,17 @@ opfunc_meta (opcode_t opdata, /**< operation data */
{
return ecma_make_meta_completion_value ();
}
case OPCODE_META_TYPE_STRICT_CODE:
{
FIXME (/* Handle in run_int_from_pos */);
return ecma_make_meta_completion_value ();
}
case OPCODE_META_TYPE_UNDEFINED:
case OPCODE_META_TYPE_THIS_ARG:
case OPCODE_META_TYPE_FUNCTION_END:
case OPCODE_META_TYPE_CATCH_EXCEPTION_IDENTIFIER:
case OPCODE_META_TYPE_STRICT_CODE:
{
JERRY_UNREACHABLE ();
}