Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/arkguard/test/ut/transformer/
DRenameFileNameTransformer.spec.ts55 const renameFileNameModule = require('../../../src/transformers/rename/RenameFileNameTransformer'); constant
144 renameFileNameModule.globalFileNameMangledTable = undefined;
259 renameFileNameModule.historyFileNameMangledTable = new Map<string, string>();
260 renameFileNameModule.historyFileNameMangledTable.set('key1', 'value1');
262 expect(renameFileNameModule.historyFileNameMangledTable.size).to.equal(0);
266 renameFileNameModule.historyFileNameMangledTable = undefined;
317 const result = renameFileNameModule.updateImportOrExportDeclarationForTest(node);
324 const result = renameFileNameModule.updateImportOrExportDeclarationForTest(node);
331 const result = renameFileNameModule.updateImportOrExportDeclarationForTest(node);
438 renameFileNameModule.historyFileNameMangledTable = new Map<string, string>();
[all …]
/arkcompiler/ets_frontend/arkguard/test/ut/utils/
DFileUtils.spec.ts22 const renameFileNameModule = require('../../../src/transformers/rename/RenameFileNameTransformer'); constant
169 assert.strictEqual(renameFileNameModule.isInOhModules(projectInfo, originalPath), false);
179 assert.strictEqual(renameFileNameModule.isInOhModules(projectInfo, originalPath), true);
/arkcompiler/ets_frontend/arkguard/src/initialization/
DConfigResolver.ts31 renameFileNameModule,
1074 renameFileNameModule.historyFileNameMangledTable = getMapFromJson(nameCache.FileNameCache);
1158 fillNameCache(renameFileNameModule.historyFileNameMangledTable, mergedFileNameCache);
1159 fillNameCache(renameFileNameModule.globalFileNameMangledTable, mergedFileNameCache);
1387 const mangledFilePath = renameFileNameModule.getMangleCompletePath(originalPath);
/arkcompiler/ets_frontend/arkguard/test/ut/arkobfuscator/
DArkObfuscator2.spec.ts41 renameFileNameModule,
602 renameFileNameModule.historyFileNameMangledTable = new Map([['keyA', 'valueA']]);
/arkcompiler/ets_frontend/arkguard/src/
DArkObfuscator.ts146 export const renameFileNameModule = require('./transformers/rename/RenameFileNameTransformer'); constant
179 renameFileNameModule.clearCaches();
/arkcompiler/ets_frontend/arkguard/test/ut/initialization/
DConfigResolver.spec.ts40 import { HvigorErrorInfo, PropCollections, renameFileNameModule } from '../../../src/ArkObfuscator';
1496 let renameFileNameModule; variable
1502 renameFileNameModule = {
1547 expect(renameFileNameModule.historyFileNameMangledTable).to.deep.equal(new Map());
DConfigResolver-hsp.spec.ts21 import { HvigorErrorInfo, PropCollections, renameFileNameModule } from '../../../src/ArkObfuscator';