Representing ecma_value_t as integer instead of structure with bit-fields, adding corresponding field accessors.

This commit is contained in:
Ruben Ayrapetyan
2014-11-27 17:34:03 +03:00
parent 815309c7e9
commit 0d870a1e74
19 changed files with 200 additions and 223 deletions
+1 -2
View File
@@ -1459,8 +1459,7 @@ opfunc_delete_var (opcode_t opdata, /**< operation data */
}
else
{
JERRY_ASSERT (ecma_is_value_object (ref.base));
ecma_object_t *bindings_p = ECMA_GET_NON_NULL_POINTER (ref.base.value);
ecma_object_t *bindings_p = ecma_get_object_from_value (ref.base);
JERRY_ASSERT (ecma_is_lexical_environment (bindings_p));
ECMA_TRY_CATCH (delete_completion,