Home
last modified time | relevance | path

Searched refs:cacheAbcFilePath (Results 1 – 6 of 6) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/
Dbundle_mode.ts126 const cacheAbcFilePath: string = changeFileExtension(cacheFilePath, EXTNAME_ABC); constant
130 if (fs.existsSync(cacheAbcFilePath)) {
132 const hashAbcContentData: any = toHashData(cacheAbcFilePath);
134 jsonObject[cacheAbcFilePath] === hashAbcContentData) {
136 updatedJsonObject[cacheAbcFilePath] = hashAbcContentData;
342 const cacheAbcFilePath: string = changeFileExtension(cacheFilePath, EXTNAME_ABC); constant
343 if (!fs.existsSync(cacheFilePath) || !fs.existsSync(cacheAbcFilePath)) {
344 this.throwArkTsCompilerError(`ArkTS:ERROR ${cacheFilePath} or ${cacheAbcFilePath} is lost`);
347 const hashCacheAbcContentData: any = toHashData(cacheAbcFilePath);
349 this.hashJsonObject[cacheAbcFilePath] = hashCacheAbcContentData;
[all …]
/developtools/ace_js2bundle/ace-loader/src/
Dgen-abc.js30 const cacheAbcFilePath = cacheOutputPath.replace(/\.temp\.js$/, ".abc");
32 …const singleCmd = `${cmd} "${cacheOutputPath}" -o "${cacheAbcFilePath}" --source-file "${sourceFil…
DgenAbc-plugin.js314 const cacheAbcFilePath = cacheOutputPath.replace(/\.temp\.js$/, '.abc');
321 if (fs.existsSync(cacheAbcFilePath)) {
323 const hashAbcContentData = toHashData(cacheAbcFilePath);
324 …if (jsonObject[cacheOutputPath] === hashInputContentData && jsonObject[cacheAbcFilePath] === hashA…
326 updateJsonObject[cacheAbcFilePath] = hashAbcContentData;
342 const cacheAbcFilePath = cacheOutputPath.replace(/\.temp\.js$/, '.abc');
343 if (!fs.existsSync(cacheOutputPath) || !fs.existsSync(cacheAbcFilePath)) {
349 const hashAbcContentData = toHashData(cacheAbcFilePath);
351 hashJsonObject[cacheAbcFilePath] = hashAbcContentData;
414 const cacheAbcFilePath = intermediateJsBundle[i].cacheOutputPath.replace(/\.temp\.js$/, ".abc");
[all …]
/developtools/ace_ets2bundle/compiler/src/
Dgen_abc.ts33 const cacheAbcFilePath: string = cacheOutputPath.replace(/\.temp\.js$/, ".abc"); constant
35 …const singleCmd: any = `${cmd} "${cacheOutputPath}" -o "${cacheAbcFilePath}" --source-file "${sour…
Dgen_abc_plugin.ts946 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
[all …]
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/
Dgen_abc.ts37 const cacheAbcFilePath: string = changeFileExtension(cacheFilePath, EXTNAME_ABC); constant
39 …const singleCmd: any = `${cmd} "${cacheFilePath}" -o "${cacheAbcFilePath}" --source-file "${source…