Searched refs:sourceMapFilePath (Results 1 – 5 of 5) sorted by relevance
| /developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/module/ |
| D | module_hotreload_mode.test.ts | 82 …const sourceMapFilePath: string = path.join(this.rollup.share.projectConfig.patchAbcPath, SOURCEMA… constant 83 if (sourceMapFilePath && fs.existsSync(sourceMapFilePath)) { 84 const testObject = fs.readFileSync(sourceMapFilePath).toString();
|
| D | module_coldreload_mode.test.ts | 118 …const sourceMapFilePath: string = path.join(this.rollup.share.projectConfig.patchAbcPath, SOURCEMA… constant 119 if (sourceMapFilePath && fs.existsSync(sourceMapFilePath)) { 120 const testObject = fs.readFileSync(sourceMapFilePath).toString();
|
| /developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/ |
| D | module_hotreload_mode.ts | 144 const sourceMapFilePath: string = path.join(this.projectConfig.patchAbcPath, SOURCEMAPS); constant 145 validateFilePathLength(sourceMapFilePath, this.logger); 146 fs.writeFileSync(sourceMapFilePath,
|
| D | module_coldreload_mode.ts | 144 const sourceMapFilePath: string = path.join(this.projectConfig.patchAbcPath, SOURCEMAPS); constant 145 validateFilePathLength(sourceMapFilePath, this.logger); 146 fs.writeFileSync(sourceMapFilePath,
|
| /developtools/ace_ets2bundle/compiler/src/ |
| D | gen_abc_plugin.ts | 517 let sourceMapFilePath: string = path.join(projectConfig.buildPath, SOURCEMAPS); 518 validateFilePathLength(sourceMapFilePath, logger); 519 fs.writeFile(sourceMapFilePath, JSON.stringify(cachedSourceMaps, null, 2), 'utf-8', 1151 let sourceMapFilePath: string = path.join(projectConfig.patchAbcPath, SOURCEMAPS); 1152 validateFilePathLength(sourceMapFilePath, logger); 1153 fs.writeFileSync(sourceMapFilePath,
|