Home
last modified time | relevance | path

Searched refs:new_target_p (Results 1 – 8 of 8) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-regexp.c55 ecma_object_t *new_target_p = JERRY_CONTEXT (current_new_target); in ecma_builtin_regexp_dispatch_helper() local
57 ecma_object_t *new_target_p = NULL; in ecma_builtin_regexp_dispatch_helper() local
82 if (new_target_p == NULL) in ecma_builtin_regexp_dispatch_helper()
84 new_target_p = ecma_builtin_get (ECMA_BUILTIN_ID_REGEXP); in ecma_builtin_regexp_dispatch_helper()
97 … bool is_same = ecma_op_same_value (ecma_make_object_value (new_target_p), pattern_constructor); in ecma_builtin_regexp_dispatch_helper()
161 ecma_object_t *new_target_obj_p = ecma_op_regexp_alloc (new_target_p); in ecma_builtin_regexp_dispatch_helper()
Decma-builtin-reflect.c183 ecma_object_t *new_target_p = target_p; in ecma_builtin_reflect_dispatch_routine() local
193 new_target_p = ecma_get_object_from_value (arguments_list[2]); in ecma_builtin_reflect_dispatch_routine()
210 new_target_p, in ecma_builtin_reflect_dispatch_routine()
Decma-builtins.h88 ecma_builtin_dispatch_construct (ecma_object_t *obj_p, ecma_object_t *new_target_p,
Decma-builtins.c1172 ecma_object_t *new_target_p, /**< new target */ in ecma_builtin_dispatch_construct() argument
1190 JERRY_CONTEXT (current_new_target) = new_target_p; in ecma_builtin_dispatch_construct()
1192 JERRY_UNUSED (new_target_p); in ecma_builtin_dispatch_construct()
/third_party/jerryscript/jerry-core/ecma/operations/
Decma-function-object.c352 ecma_object_t *new_target_p = JERRY_CONTEXT (current_new_target); in ecma_op_create_dynamic_function() local
360 if (new_target_p == NULL) in ecma_op_create_dynamic_function()
364 new_target_p = ecma_builtin_get (ECMA_BUILTIN_ID_GENERATOR_FUNCTION); in ecma_op_create_dynamic_function()
368 new_target_p = ecma_builtin_get (ECMA_BUILTIN_ID_FUNCTION); in ecma_op_create_dynamic_function()
372 ecma_object_t *proto = ecma_op_get_prototype_from_constructor (new_target_p, fallback_proto); in ecma_op_create_dynamic_function()
1114 ecma_object_t *new_target_p, /**< new target */ in ecma_op_function_construct_bound() argument
1127 if (func_obj_p == new_target_p) in ecma_op_function_construct_bound()
1129 new_target_p = target_obj_p; in ecma_op_function_construct_bound()
1133 new_target_p, in ecma_op_function_construct_bound()
1150 ecma_object_t *new_target_p, /**< new target */ in ecma_op_function_construct_external() argument
[all …]
Decma-proxy-object.h109 ecma_object_t *new_target_p,
Decma-function-object.h78 ecma_op_function_construct (ecma_object_t *func_obj_p, ecma_object_t *new_target_p,
Decma-proxy-object.c1751 ecma_object_t *new_target_p, /**< new target */ in ecma_proxy_object_construct() argument
1779 return ecma_op_function_construct (target_obj_p, new_target_p, args_p, argc); in ecma_proxy_object_construct()
1786 ecma_value_t new_target_value = ecma_make_object_value (new_target_p); in ecma_proxy_object_construct()