Searched refs:systemApiCachePath (Results 1 – 1 of 1) sorted by relevance
| /developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/ |
| D | ob_config_resolver.ts | 196 …const systemApiCachePath: string = path.join(sourceObConfig.obfuscationCacheDir, "systemApiCache.j… constant 197 if (isFileExist(systemApiCachePath)) { 198 this.getSystemApiConfigsByCache(selfConfig, systemApiCachePath); 200 this.getSystemApiCache(selfConfig, systemApiCachePath); 405 private getSystemApiCache(systemConfigs: MergedConfig, systemApiCachePath: string) { 422 if (!fs.existsSync(path.dirname(systemApiCachePath))) { 423 fs.mkdirSync(path.dirname(systemApiCachePath), {recursive: true}); 425 fs.writeFileSync(systemApiCachePath, JSON.stringify(systemApiContent, null, 2)); 461 private getSystemApiConfigsByCache(systemConfigs: MergedConfig, systemApiCachePath: string) { 462 let systemApiContent = JSON.parse(fs.readFileSync(systemApiCachePath, "utf-8"));
|