Home
last modified time | relevance | path

Searched refs:allFiles (Results 1 – 10 of 10) sorted by relevance

/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/common/
Dutils.test.ts340 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 …]
Dark_utils.test.ts131 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/
Drollup_plugin_mock.ts163 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],
Dshare.ts69 allFiles?: Set<string>;
/developtools/ace_ets2bundle/compiler/src/fast_build/system_api/
Drollup-plugin-system-api.ts41 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/
Dmodule_source_file.test.ts531 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 …]
Dmodule_mode.test.ts725 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/
Dprocess_ark_config.ts275 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/
Dutils.ts632 …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/
Drollup-plugin-ets-typescript.ts214 this.share.allComponents, 'component_collection.json', this.share.allFiles, widgetPath);