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();
346 if (this.hashJsonFilePath.length === 0) {
363 fs.writeFileSync(this.hashJsonFilePath, JSON.stringify(this.hashJsonObject), 'utf-8');
403 if (fs.existsSync(this.hashJsonFilePath)) {
404 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.ts499 if (this.hashJsonFilePath.length === 0 || !fs.existsSync(this.hashJsonFilePath)) {
510 if (fs.existsSync(this.hashJsonFilePath)) {
511 jsonFile = fs.readFileSync(this.hashJsonFilePath).toString();
686 if (this.hashJsonFilePath.length === 0) {
704 fs.writeFileSync(this.hashJsonFilePath, JSON.stringify(this.hashJsonObject));
747 if (fs.existsSync(this.hashJsonFilePath)) {
748 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.ts1550 if (path === moduleMode.hashJsonFilePath) {
1555 readFileSyncStub.withArgs(moduleMode.hashJsonFilePath).returns(JSON.stringify({}));