Home
last modified time | relevance | path

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

/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/
Dbundle_mode.ts114 if (!fs.existsSync(this.hashJsonFilePath) || this.hashJsonFilePath.length === 0) {
123 jsonFile = fs.readFileSync(this.hashJsonFilePath).toString();
349 if (this.hashJsonFilePath.length === 0) {
366 fs.writeFileSync(this.hashJsonFilePath, JSON.stringify(this.hashJsonObject), 'utf-8');
406 if (fs.existsSync(this.hashJsonFilePath)) {
407 fs.unlinkSync(this.hashJsonFilePath);
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/
Dcommon_mode.ts50 hashJsonFilePath: string; property in CommonMode
61 this.hashJsonFilePath = this.genHashJsonFilePath();
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_mode.ts620 if (this.hashJsonFilePath.length === 0 || !fs.existsSync(this.hashJsonFilePath)) {
631 if (fs.existsSync(this.hashJsonFilePath)) {
632 jsonFile = fs.readFileSync(this.hashJsonFilePath).toString();
817 if (this.hashJsonFilePath.length === 0) {
835 fs.writeFileSync(this.hashJsonFilePath, JSON.stringify(this.hashJsonObject));
878 if (fs.existsSync(this.hashJsonFilePath)) {
879 fs.unlinkSync(this.hashJsonFilePath);
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/bundle/
Dbundle_mode.test.ts131 fs.writeFileSync(bundleMode.hashJsonFilePath, jsonData)
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/module/
Dmodule_mode.test.ts1601 if (path === moduleMode.hashJsonFilePath) {
1606 readFileSyncStub.withArgs(moduleMode.hashJsonFilePath).returns(JSON.stringify({}));