Searched refs:sourceMapGenerator (Results 1 – 2 of 2) sorted by relevance
| /arkcompiler/ets_frontend/arkguard/test/ut/arkobfuscator/ |
| D | ArkObfuscator.spec.ts | 85 let sourceMapGenerator = getSourceMapGenerator(originalFilePath); variable 87 …sPrinter(etsSourceFile.isDeclarationFile).writeFile(etsSourceFile, textWriter, sourceMapGenerator); 100 let actualSourceMap: RawSourceMap = sourceMapGenerator.toJSON(); 123 let sourceMapGenerator = getSourceMapGenerator(dEtsSourceFilePath); variable 125 …rinter(dEtsSourceFile.isDeclarationFile).writeFile(dEtsSourceFile, textWriter, sourceMapGenerator); 147 let sourceMapGenerator = getSourceMapGenerator(tsSourceFilePath); variable 149 …bfsPrinter(tsSourceFile.isDeclarationFile).writeFile(tsSourceFile, textWriter, sourceMapGenerator);
|
| /arkcompiler/ets_frontend/arkguard/src/ |
| D | ArkObfuscator.ts | 445 let sourceMapGenerator: SourceMapGenerator = undefined; 447 sourceMapGenerator = getSourceMapGenerator(sourceFilePath); 455 …this.createObfsPrinter(ast.isDeclarationFile).writeFile(ast, this.mTextWriter, sourceMapGenerator); 461 if (this.mCustomProfiles.mEnableSourceMap && sourceMapGenerator) { 462 …this.handleSourceMapAndNameCache(sourceMapGenerator, sourceFilePath, result, previousStageSourceMa… 466 …private handleSourceMapAndNameCache(sourceMapGenerator: SourceMapGenerator, sourceFilePath: string, 468 let sourceMapJson: RawSourceMap = sourceMapGenerator.toJSON();
|