Home
last modified time | relevance | path

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

/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_mode.ts119 cacheSourceMapObject: any; property in ModuleMode
137 this.cacheSourceMapObject = {};
281 this.cacheSourceMapObject = newSourceMaps;
285 this.cacheSourceMapObject = JSON.parse(fs.readFileSync(this.cacheSourceMapPath).toString());
294 Object.keys(this.cacheSourceMapObject).forEach(key => {
301 delete this.cacheSourceMapObject[file];
306 this.cacheSourceMapObject[key] = newSourceMaps[key];
317 …fs.writeFile(this.sourceMapPath, JSON.stringify(this.cacheSourceMapObject, null, 2), 'utf-8', (err…