Home
last modified time | relevance | path

Searched refs:exportNames (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_frontend/arkguard/src/utils/
DScopeAnalyzer.ts152 exportNames?: Set<string>; property
212 let exportNames: Set<string> = new Set<string>();
230 'exportNames': exportNames,
365 current.exportNames.add(def.name);
523 current.exportNames.add(node.name.text);
585 if (!current.exportNames.has(def.name)) {
586 current.exportNames.add(def.name);
589 if (!current.exportNames.has(name)) {
590 current.exportNames.add(name);
/arkcompiler/ets_frontend/arkguard/src/transformers/rename/
DRenameIdentifierTransformer.ts187 …if (reservedNames.includes(original) || scope.exportNames.has(def.name) || isSkippedGlobal(openTop…
246 if (scope.exportNames && scope.exportNames.has(mangled)) {