Home
last modified time | relevance | path

Searched refs:cacheSourceMapPath (Results 1 – 5 of 5) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/
Dgenerate_sourcemap.ts55 private cacheSourceMapPath: string; property in SourceMapGenerator
70 this.cacheSourceMapPath = path.join(this.projectConfig.cachePath, SOURCEMAPS_JSON);
205 fs.copyFileSync(this.sourceMapPath, this.cacheSourceMapPath);
220 if (!fs.existsSync(this.cacheSourceMapPath)) {
223 cacheSourceMapObject = JSON.parse(fs.readFileSync(this.cacheSourceMapPath).toString());
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/common/
Dgenerate_sourcemap.test.ts315 sourceMapGenerator.cacheSourceMapPath = rootPath + 'source_map_cache.json';
340 sourceMapGenerator.cacheSourceMapPath = rootPath + 'source_map_cache.json';
365 sourceMapGenerator.cacheSourceMapPath = rootPath + 'source_map_cache_preview.json';
390 sourceMapGenerator.cacheSourceMapPath = rootPath + 'source_map_cache.json';
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/class_mock/
Dmodule_mode_mock.ts219 const readCacheSourceMap = fs.readFileSync(this.cacheSourceMapPath, 'utf-8');
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/module/
Dmodule_mode.test.ts788 moduleMode.cacheSourceMapPath = '';
810 moduleMode.cacheSourceMapPath = EXPECT_SOURCEMAP_JSON;
846 moduleMode.cacheSourceMapPath = '';
868 moduleMode.cacheSourceMapPath = '';
890 moduleMode.cacheSourceMapPath = '';
911 moduleMode.cacheSourceMapPath = '';
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_mode.ts143 cacheSourceMapPath: string; property in ModuleMode
166 this.cacheSourceMapPath = path.join(this.projectConfig.cachePath, SOURCEMAPS_JSON);