Searched refs:intermediateJsBundle (Results 1 – 3 of 3) sorted by relevance
| /developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/ |
| D | bundle_mode.ts | 64 intermediateJsBundle: Map<string, File>; property in BundleMode 71 this.intermediateJsBundle = new Map<string, File>(); 109 if (this.intermediateJsBundle.size === 0) { 113 this.intermediateJsBundle.forEach((value) => { 124 for (const value of this.intermediateJsBundle.values()) { 257 this.intermediateJsBundle.set(filePath, bundleFile); 356 for (const value of this.intermediateJsBundle.values()) { 379 for (const value of this.intermediateJsBundle.values()) {
|
| /developtools/ace_js2bundle/ace-loader/src/ |
| D | genAbc-plugin.js | 47 let intermediateJsBundle = []; variable 120 if (intermediateJsBundle.length === 0) { 135 generateAbcByEs2AbcOfBundleMode(intermediateJsBundle); 206 intermediateJsBundle.push({ 268 filterIntermediateJsBundleByHashJson(buildPathInfo, intermediateJsBundle); 289 intermediateJsBundle = []; 411 for (let i = 0; i < intermediateJsBundle.length; ++i) { 412 const abcFile = intermediateJsBundle[i].path.replace(/\.temp\.js$/, ".abc"); 413 const cacheOutputPath = intermediateJsBundle[i].cacheOutputPath; 414 const cacheAbcFilePath = intermediateJsBundle[i].cacheOutputPath.replace(/\.temp\.js$/, ".abc");
|
| /developtools/ace_ets2bundle/compiler/src/ |
| D | gen_abc_plugin.ts | 108 let intermediateJsBundle: Array<File> = []; variable 270 if (intermediateJsBundle.length === 0) { 277 generateAbcByEs2AbcOfBundleMode(intermediateJsBundle); 288 intermediateJsBundle = []; 656 …intermediateJsBundle.push({path: output, size: fileSize, cacheOutputPath: cacheOutputPath, sourceF… 834 filterIntermediateJsBundleByHashJson(buildPathInfo, intermediateJsBundle); 1041 for (let i = 0; i < intermediateJsBundle.length; ++i) { 1042 const abcFile: string = intermediateJsBundle[i].path.replace(/\.temp\.js$/, ".abc"); 1043 const cacheOutputPath: string = intermediateJsBundle[i].cacheOutputPath; 1044 …const cacheAbcFilePath: string = intermediateJsBundle[i].cacheOutputPath.replace(/\.temp\.js$/, ".…
|