Home
last modified time | relevance | path

Searched refs:importNames (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_frontend/arkguard/src/transformers/rename/
DRenameIdentifierTransformer.ts160 scope.parent.importNames.forEach((value) => {
161 scope.importNames.add(value);
170 if (scope.importNames.has(def.name)) {
241 if (scope.importNames && scope.importNames.has(mangled)) {
/arkcompiler/ets_frontend/arkguard/src/utils/
DScopeAnalyzer.ts150 importNames?: Set<string>; property
210 let importNames: Set<string> = new Set<string>();
229 'importNames': importNames,
473 current.importNames.add(node.propertyName.text);
475 current.importNames.add(node.name.text);
507 current.importNames.add(bindingElement.name.text);
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcompilation_driver.h263 std::vector<CString> importNames{}; in SearchForCompilation()
265 [this, &methodList, &recordName, &importNames, &getMainMethodSet] in SearchForCompilation()
280 importNames.emplace_back(importRecord); in SearchForCompilation()
332 UpdateResolveDepends(importNames, needUpdateCompile); in SearchForCompilation()