Searched refs:allFiles (Results 1 – 10 of 10) sorted by relevance
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/common/ |
D | utils.test.ts | 340 const arraylist = Array.from(this.rollup.share.allFiles); 527 const allFiles = new Set<string>(); constant 528 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles); 529 this.mockfileList = allFiles.values(); 544 const allFiles = new Set<string>(); constant 545 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles); 546 this.mockfileList = allFiles.values(); 561 const allFiles = new Set<string>(); constant 562 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles); 563 this.mockfileList = allFiles.values(); [all …]
|
D | ark_utils.test.ts | 131 for (const filePath of this.rollup.share.allFiles) { 145 for (const filePath of this.rollup.share.allFiles) { 156 for (const filePath of this.rollup.share.allFiles) { 167 for (const filePath of this.rollup.share.allFiles) {
|
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/rollup_mock/ |
D | rollup_plugin_mock.ts | 163 return this.share.allFiles ? this.share.allFiles.values() : undefined; 176 this.share.allFiles = new Set<string>(); 178 scanFiles(this.share.projectConfig.projectPath, this.share.allFiles); 183 this.share.allFiles.add(tsFilePath); 184 this.share.allFiles.add(jsFilePath); 185 this.share.allFiles.add(etsFilePath); 187 this.share.allFiles.add(MODULE_ID_ROLLUP_PLACEHOLDER); 190 const allFiles = Array.from(this.share.allFiles); constant 192 for (let i = 0; i < allFiles.length - 1; i++) { 193 this.moduleInfos.push(new ModuleInfo(allFiles[i],
|
D | share.ts | 69 allFiles?: Set<string>;
|
/developtools/ace_ets2bundle/compiler/src/fast_build/system_api/ |
D | rollup-plugin-system-api.ts | 41 const allFiles: Set<string> = new Set(); constant 52 allFiles.add(path.join(id)); 74 this.share.allComponents = getAllComponentsOrModules(allFiles, 'component_collection.json'); 75 this.share.allFiles = allFiles; 84 …const allModules: Map<string, Array<string>> = getAllComponentsOrModules(allFiles, 'module_collect… 89 allFiles.clear();
|
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/module/ |
D | module_source_file.test.ts | 531 const allFiles = new Set<string>(); constant 532 scanFiles(MODULE_TEST_PATH, allFiles); 533 for (const moduleId of allFiles.values()) { 560 const allFiles = new Set<string>(); constant 561 scanFiles(MODULE_TEST_PATH, allFiles); 562 for (const moduleId of allFiles.values()) { 589 const allFiles = new Set<string>(); constant 590 scanFiles(MODULE_TEST_PATH, allFiles); 591 for (const moduleId of allFiles.values()) { 618 const allFiles = new Set<string>(); constant [all …]
|
D | module_mode.test.ts | 725 const allFiles = new Set<string>(); constant 726 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles); 727 this.mockfileList = allFiles.values(); 743 const allFiles = new Set<string>(); constant 744 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles); 745 this.mockfileList = allFiles.values(); 761 const allFiles = new Set<string>(); constant 762 scanFiles(this.rollup.share.projectConfig.modulePath, allFiles); 763 this.mockfileList = allFiles.values();
|
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/ |
D | process_ark_config.ts | 275 export function readProjectAndLibsSource(allFiles: Set<string>, mergedObConfig: MergedConfig, arkOb… 276 …onfig?.options === undefined || mergedObConfig.options.disableObfuscation || allFiles.size === 0) { 281 projectAndLibs = readProjectPropertiesByCollectedPaths(allFiles,
|
/developtools/ace_ets2bundle/compiler/src/ |
D | utils.ts | 632 …allComponentsOrModules: Map<string, Array<string>>, fileName: string, allFiles: Set<string> = null, 639 if (allFiles && !allFiles.has(key)) { 652 export function getAllComponentsOrModules(allFiles: Set<string>, 661 if (allFiles.has(key)) {
|
/developtools/ace_ets2bundle/compiler/src/fast_build/ets_ui/ |
D | rollup-plugin-ets-typescript.ts | 214 this.share.allComponents, 'component_collection.json', this.share.allFiles, widgetPath);
|