Home
last modified time | relevance | path

Searched refs:target_proto (Results 1 – 3 of 3) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-proxy-object.c359 ecma_value_t target_proto = ecma_builtin_object_object_get_prototype_of (target_obj_p); in ecma_proxy_object_get_prototype_of() local
362 if (ECMA_IS_VALUE_ERROR (target_proto)) in ecma_proxy_object_get_prototype_of()
364 return target_proto; in ecma_proxy_object_get_prototype_of()
370 if (handler_proto != target_proto) in ecma_proxy_object_get_prototype_of()
378 ecma_free_value (target_proto); in ecma_proxy_object_get_prototype_of()
466 ecma_value_t target_proto = ecma_builtin_object_object_get_prototype_of (target_obj_p); in ecma_proxy_object_set_prototype_of() local
469 if (ECMA_IS_VALUE_ERROR (target_proto)) in ecma_proxy_object_set_prototype_of()
471 return target_proto; in ecma_proxy_object_set_prototype_of()
477 if (boolean_trap_result && (target_proto != proto)) in ecma_proxy_object_set_prototype_of()
483 ecma_free_value (target_proto); in ecma_proxy_object_set_prototype_of()
Decma-objects.c2009 ecma_value_t target_proto = ecma_proxy_object_get_prototype_of (target_p); in ecma_op_object_is_prototype_of() local
2011 if (ECMA_IS_VALUE_ERROR (target_proto)) in ecma_op_object_is_prototype_of()
2013 return target_proto; in ecma_op_object_is_prototype_of()
2015 target_cp = ecma_proxy_object_prototype_to_cp (target_proto); in ecma_op_object_is_prototype_of()
/third_party/jerryscript/tests/unit-core/
Dtest-api.c743 jerry_value_t target_proto = jerry_get_prototype (target); in main() local
744 TEST_ASSERT (target_proto == new_proto); in main()
750 jerry_release_value (target_proto); in main()