Home
last modified time | relevance | path

Searched refs:export_name_p (Results 1 – 5 of 5) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/base/
Decma-module.c194 ecma_string_t * const export_name_p) /**< export name */ in ecma_module_resolve_set_insert() argument
202 && ecma_compare_ecma_strings (current_p->record.name_p, export_name_p)) in ecma_module_resolve_set_insert()
215 ecma_ref_ecma_string (export_name_p); in ecma_module_resolve_set_insert()
216 new_p->record.name_p = export_name_p; in ecma_module_resolve_set_insert()
244 ecma_string_t * const export_name_p) /**< exported name */ in ecma_module_resolve_stack_push() argument
250 ecma_ref_ecma_string (export_name_p); in ecma_module_resolve_stack_push()
251 new_frame_p->export_name_p = export_name_p; in ecma_module_resolve_stack_push()
271 ecma_deref_ecma_string (current_p->export_name_p); in ecma_module_resolve_stack_pop()
287 ecma_string_t * const export_name_p, /**< export name */ in ecma_module_resolve_export() argument
297 ecma_module_resolve_stack_push (&stack_p, module_p, export_name_p); in ecma_module_resolve_export()
[all …]
Decma-module.h115 ecma_string_t *export_name_p; /**< export identifier name */ member
121 ecma_string_t *const export_name_p);
126 ecma_string_t *const export_name_p);
/third_party/jerryscript/jerry-core/parser/js/
Djs-parser-module.c114 ecma_string_t *export_name_p) /**< exported identifier */ in parser_module_check_duplicate_export() argument
120 if (ecma_compare_ecma_strings (current_names_p->imex_name_p, export_name_p)) in parser_module_check_duplicate_export()
135 if (ecma_compare_ecma_strings (name_p->imex_name_p, export_name_p)) in parser_module_check_duplicate_export()
151 if (ecma_compare_ecma_strings (name_p->imex_name_p, export_name_p)) in parser_module_check_duplicate_export()
375 ecma_string_t *export_name_p = NULL; in parser_module_parse_export_clause() local
407export_name_p = ecma_new_ecma_string_from_utf8 (as_literal_p->u.char_p, as_literal_p->prop.length); in parser_module_parse_export_clause()
411 export_name_p = local_name_p; in parser_module_parse_export_clause()
415 if (parser_module_check_duplicate_export (context_p, export_name_p)) in parser_module_parse_export_clause()
418 ecma_deref_ecma_string (export_name_p); in parser_module_parse_export_clause()
422 parser_module_add_names_to_node (context_p, export_name_p, local_name_p); in parser_module_parse_export_clause()
[all …]
Djs-parser-statm.c2482 ecma_string_t *export_name_p = ecma_get_magic_string (LIT_MAGIC_STRING_DEFAULT); in parser_parse_export_statement() local
2484 if (parser_module_check_duplicate_export (context_p, export_name_p)) in parser_parse_export_statement()
2487 ecma_deref_ecma_string (export_name_p); in parser_parse_export_statement()
2492 export_name_p, in parser_parse_export_statement()
2495 ecma_deref_ecma_string (export_name_p); in parser_parse_export_statement()
Djs-parser-internal.h811 …l parser_module_check_duplicate_export (parser_context_t *context_p, ecma_string_t *export_name_p);