Home
last modified time | relevance | path

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

/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/
Dbundle_mode.ts112 if (!fs.existsSync(this.hashJsonFilePath) || this.hashJsonFilePath.length === 0) {
121 jsonFile = fs.readFileSync(this.hashJsonFilePath).toString();
336 if (this.hashJsonFilePath.length === 0) {
352 fs.writeFileSync(this.hashJsonFilePath, JSON.stringify(this.hashJsonObject), 'utf-8');
391 if (fs.existsSync(this.hashJsonFilePath)) {
392 fs.unlinkSync(this.hashJsonFilePath);
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/
Dcommon_mode.ts48 hashJsonFilePath: string; property in CommonMode
59 this.hashJsonFilePath = this.genHashJsonFilePath();
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_mode.ts422 if (this.hashJsonFilePath.length === 0 || !fs.existsSync(this.hashJsonFilePath)) {
433 if (fs.existsSync(this.hashJsonFilePath)) {
434 jsonFile = fs.readFileSync(this.hashJsonFilePath).toString();
608 if (this.hashJsonFilePath.length === 0) {
626 fs.writeFileSync(this.hashJsonFilePath, JSON.stringify(this.hashJsonObject));
669 if (fs.existsSync(this.hashJsonFilePath)) {
670 fs.unlinkSync(this.hashJsonFilePath);