Searched refs:new_target_p (Results 1 – 8 of 8) sorted by relevance
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-regexp.c | 55 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()
|
D | ecma-builtin-reflect.c | 183 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()
|
D | ecma-builtins.h | 88 ecma_builtin_dispatch_construct (ecma_object_t *obj_p, ecma_object_t *new_target_p,
|
D | ecma-builtins.c | 1172 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/ |
D | ecma-function-object.c | 352 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 …]
|
D | ecma-proxy-object.h | 109 ecma_object_t *new_target_p,
|
D | ecma-function-object.h | 78 ecma_op_function_construct (ecma_object_t *func_obj_p, ecma_object_t *new_target_p,
|
D | ecma-proxy-object.c | 1751 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()
|