Lines Matching refs:cacheAbcFilePath
946 const cacheAbcFilePath: string = cacheOutputPath.replace(/\.temp\.js$/, '.abc'); constant
952 if (fs.existsSync(cacheAbcFilePath)) {
954 const hashAbcContentData: any = toHashData(cacheAbcFilePath);
955 …if (jsonObject[cacheOutputPath] === hashInputContentData && jsonObject[cacheAbcFilePath] === hashA…
957 updateJsonObject[cacheAbcFilePath] = hashAbcContentData;
973 const cacheAbcFilePath: string = cacheOutputPath.replace(/\.temp\.js$/, '.abc'); constant
974 if (!fs.existsSync(cacheOutputPath) || !fs.existsSync(cacheAbcFilePath)) {
980 const hashAbcContentData: any = toHashData(cacheAbcFilePath);
982 hashJsonObject[cacheAbcFilePath] = hashAbcContentData;
1044 …const cacheAbcFilePath: string = intermediateJsBundle[i].cacheOutputPath.replace(/\.temp\.js$/, ".… constant
1045 if (!fs.existsSync(cacheAbcFilePath)) {
1046 logger.debug(red, `ArkTS:ERROR ${cacheAbcFilePath} is lost`, reset);
1056 fs.copyFileSync(cacheAbcFilePath, abcFile);