Home
last modified time | relevance | path

Searched refs:cacheFilePath (Results 1 – 4 of 4) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/
Dbundle_mode.ts58 cacheFilePath: string; property
125 const cacheFilePath: string = value.cacheFilePath; constant
126 const cacheAbcFilePath: string = changeFileExtension(cacheFilePath, EXTNAME_ABC);
127 if (!fs.existsSync(cacheFilePath)) {
128 this.throwArkTsCompilerError(`ArkTS:ERROR ${cacheFilePath} is lost`);
131 const hashCacheFileContentData: any = toHashData(cacheFilePath);
133 if (jsonObject[cacheFilePath] === hashCacheFileContentData &&
135 updatedJsonObject[cacheFilePath] = hashCacheFileContentData;
179 const cacheFilePath: string = info.cacheFilePath; constant
183 const abcFilePath: string = changeFileExtension(cacheFilePath, EXTNAME_ABC);
[all …]
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_mode.ts86 cacheFilePath: string; property in ModuleInfo
92 …constructor(filePath: string, cacheFilePath: string, isCommonJs: boolean, recordName: string, sour…
96 this.cacheFilePath = cacheFilePath;
122 cacheFilePath: string; property in ModuleMode
142 this.cacheFilePath = path.join(this.projectConfig.cachePath, MODULES_CACHE);
255 let cacheFilePath: string =
266 cacheFilePath = changeFileExtension(cacheFilePath, extName);
269 cacheFilePath = toUnixPath(cacheFilePath);
274 …moduleInfos.set(filePath, new ModuleInfo(filePath, cacheFilePath, isCommonJs, recordName, sourceFi…
339 this.cmdArgs.push(`"@${this.cacheFilePath}"`);
[all …]
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/
Dgen_abc.ts36 const cacheFilePath: string = inputPaths[i].cacheFilePath; constant
37 const cacheAbcFilePath: string = changeFileExtension(cacheFilePath, EXTNAME_ABC);
39 …const singleCmd: any = `${cmd} "${cacheFilePath}" -o "${cacheAbcFilePath}" --source-file "${source…
59 …content += `${info.cacheFilePath};${info.recordName};${moduleType};${info.sourceFile};${info.packa…
/developtools/ace_ets2bundle/compiler/src/
Dgen_merged_abc.ts85 …FilesInfo(moduleInfos: Array<ModuleInfo>, npmEntriesInfoPath: string, cacheFilePath: string): void…
100 fs.writeFileSync(cacheFilePath, abcCacheFilesInfo, 'utf-8');
109 const cacheFilePath: string = path.join(process.env.cachePath, MODULES_CACHE); constant
110 validateFilePathLength(cacheFilePath, logger);
111 generateAbcCacheFilesInfo(moduleInfos, npmEntriesInfoPath, cacheFilePath);
128 genAbcCmd += ` --cache-file "@${cacheFilePath}"`;