Home
last modified time | relevance | path

Searched refs:scope_p (Results 1 – 7 of 7) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-function-object.h40 ecma_op_create_simple_function_object (ecma_object_t *scope_p, const ecma_compiled_code_t *bytecode…
58 ecma_op_create_generator_function_object (ecma_object_t *scope_p, const ecma_compiled_code_t *bytec…
61 ecma_op_create_arrow_function_object (ecma_object_t *scope_p, const ecma_compiled_code_t *bytecode_…
Decma-function-object.c219 ecma_op_create_function_object (ecma_object_t *scope_p, /**< function's scope */ in ecma_op_create_function_object() argument
223 JERRY_ASSERT (ecma_is_lexical_environment (scope_p)); in ecma_op_create_function_object()
258 ECMA_SET_NON_NULL_POINTER_TAG (ext_func_p->u.function.scope_cp, scope_p, 0); in ecma_op_create_function_object()
411 ecma_op_create_simple_function_object (ecma_object_t *scope_p, /**< function's scope */ in ecma_op_create_simple_function_object() argument
414 …return ecma_op_create_function_object (scope_p, bytecode_data_p, ECMA_BUILTIN_ID_FUNCTION_PROTOTYP… in ecma_op_create_simple_function_object()
427 ecma_op_create_generator_function_object (ecma_object_t *scope_p, /**< function's scope */ in ecma_op_create_generator_function_object() argument
430 return ecma_op_create_function_object (scope_p, bytecode_data_p, ECMA_BUILTIN_ID_GENERATOR); in ecma_op_create_generator_function_object()
441 ecma_op_create_arrow_function_object (ecma_object_t *scope_p, /**< function's scope */ in ecma_op_create_arrow_function_object() argument
462 ECMA_SET_NON_NULL_POINTER_TAG (arrow_func_p->header.u.function.scope_cp, scope_p, 0); in ecma_op_create_arrow_function_object()
791 ecma_object_t *scope_p = ECMA_GET_NON_NULL_POINTER_FROM_POINTER_TAG (ecma_object_t, in ecma_op_function_call_simple() local
[all …]
/third_party/jerryscript/jerry-core/ecma/base/
Decma-module.c507 ecma_value_t prop_value = ecma_op_get_value_lex_env_base (record.module_p->scope_p, in ecma_module_namespace_object_add_export_if_needed()
635 module_p->scope_p = ecma_create_decl_lex_env (ecma_get_global_environment ()); in ecma_module_evaluate()
641 module_p->scope_p); in ecma_module_evaluate()
668 ecma_object_t *local_env_p = current_context_p->module_p->scope_p; in ecma_module_connect_imports()
788 ecma_value_t prop_value = ecma_op_get_value_lex_env_base (record.module_p->scope_p, in ecma_module_connect_imports()
1046 && module_p->scope_p != NULL) in ecma_module_release_module()
1048 ecma_deref_object (module_p->scope_p); in ecma_module_release_module()
Decma-module.h86 ecma_object_t *scope_p; /**< lexica lenvironment of the module */ member
/third_party/jerryscript/jerry-core/parser/js/
Djs-parser-module.c329 module_p->scope_p = NULL; in parser_module_context_init()
/third_party/jerryscript/jerry-core/api/
Djerry.c624 ecma_object_t *scope_p = ECMA_GET_NON_NULL_POINTER_FROM_POINTER_TAG (ecma_object_t, in jerry_run() local
627 if (scope_p != ecma_get_global_environment ()) in jerry_run()
/third_party/jerryscript/jerry-core/vm/
Dvm.c326 JERRY_ASSERT (module_p->scope_p == NULL); in vm_run_global()
328 module_p->scope_p = global_scope_p; in vm_run_global()