Searched refs:exportedNames (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/module/ |
H A D | js_module_source_text.cpp | 38 CVector<std::string> exportedNames; in GetExportedNames() local 44 return exportedNames; in GetExportedNames() 53 AddExportName<LocalExportEntry>(thread, entryValue, exportedNames); in GetExportedNames() 57 AddExportName<IndirectExportEntry>(thread, entryValue, exportedNames); in GetExportedNames() 72 SetExportName(thread, moduleRequest, module, exportedNames, newExportStarSet); in GetExportedNames() 73 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, exportedNames); in GetExportedNames() 76 return exportedNames; in GetExportedNames() 868 // a. Let exportedNames be ? module.GetExportedNames(« »). in GetModuleNamespace() 870 CVector<std::string> exportedNames = SourceTextModule::GetExportedNames(thread, module, exportStarSet); in GetModuleNamespace() local 872 JSHandle<TaggedArray> unambiguousNames = factory->NewTaggedArray(exportedNames in GetModuleNamespace() 1494 SetExportName(JSThread *thread, const JSHandle<JSTaggedValue> &moduleRequest, const JSHandle<SourceTextModule> &module, CVector<std::string> &exportedNames, JSHandle<TaggedArray> &newExportStarSet) SetExportName() argument 1602 AddExportName(JSThread *thread, const JSTaggedValue &exportEntry, CVector<std::string> &exportedNames) AddExportName() argument [all...] |
H A D | js_module_source_text.h | 395 CVector<std::string> &exportedNames, JSHandle<TaggedArray> &newExportStarSet); 404 static void AddExportName(JSThread *thread, const JSTaggedValue &exportEntry, CVector<std::string> &exportedNames);
|
/arkcompiler/ets_frontend/ets2panda/varbinder/ |
H A D | scope.cpp | 673 std::set<util::StringView> exportedNames; in ExportAnalysis() local 683 auto result = exportedNames.insert(exportAllDecl->Exported()->Name()); in ExportAnalysis() 706 auto result = exportedNames.insert(decl->ExportName()); in ExportAnalysis()
|
H A D | ETSBinder.cpp | 565 std::unordered_set<std::string> exportedNames; in AddImportNamespaceSpecifiersToTopBindings() local 582 !exportedNames.insert(it->AsImportSpecifier()->Local()->Name().Mutf8()).second) { in AddImportNamespaceSpecifiersToTopBindings()
|
/arkcompiler/ets_runtime/ecmascript/module/tests/ |
H A D | ecma_module_test.cpp | 257 CVector<std::string> exportedNames = SourceTextModule::GetExportedNames(thread, module, exportStarSet); in HWTEST_F_L0() local 258 EXPECT_EQ(exportedNames.size(), 0); in HWTEST_F_L0()
|
Completed in 16 milliseconds