Home
last modified time | relevance | path

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

/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/module/
Dmodule_hotfix_mode.test.ts37 function checkCmdArgs(cmdArgs: Array<object>, compatibleSdkVersion: string) : void {
40 expect(cmdArgs[0].indexOf(BUILD_INFO) > 0).to.be.true;
41 expect(cmdArgs[1] === ENTRY_LIST).to.be.true;
42 expect(cmdArgs[2].indexOf(BUILD_NPM) > 0).to.be.true;
43 expect(cmdArgs[3] === OUTPUT).to.be.true;
44 expect(cmdArgs[4].indexOf(MODULES_ABC) > 0).to.be.true;
45 expect(cmdArgs[5] === FILE_THREADS).to.be.true;
46 expect(cmdArgs[6] === `\"${fileThreads}\"`).to.be.true;
47 expect(cmdArgs[7].indexOf(compatibleSdkVersion) > 0).to.be.true;
48 expect(cmdArgs[8] === MERGE_ABC).to.be.true;
[all …]
Dmodule_coldreload_mode.test.ts79 expect(moduleMode.cmdArgs[0].indexOf(ES2ABC_PATH) > 0).to.be.true;
80 expect(moduleMode.cmdArgs[1] === DEBUG_INFO).to.be.true;
81 expect(moduleMode.cmdArgs[2] === SIMBOL_TABLE).to.be.true;
82 expect(moduleMode.cmdArgs[3].indexOf(SYMBOLMAP_MAP) > 0).to.be.true;
90 expect(moduleMode.cmdArgs[0].indexOf(ES2ABC_PATH) > 0).to.be.true;
91 expect(moduleMode.cmdArgs[1] === DEBUG_INFO).to.be.false;
92 expect(moduleMode.cmdArgs[1] === SIMBOL_TABLE).to.be.true;
93 expect(moduleMode.cmdArgs[2].indexOf(SYMBOLMAP_MAP) > 0).to.be.true;
Dmodule_hotreload_mode.test.ts102 expect(moduleMode.cmdArgs[0].indexOf(ES2ABC_PATH) > 0).to.be.true;
103 expect(moduleMode.cmdArgs[1] === DEBUG_INFO).to.be.true;
104 expect(moduleMode.cmdArgs[2] === SIMBOL_TABLE).to.be.true;
105 expect(moduleMode.cmdArgs[3].indexOf(SYMBOLMAP_MAP) > 0).to.be.true;
Dmodule_mode.test.ts91 function checkGenerateEs2AbcCmdExpect(cmdArgs: Array<object>, compatibleSdkVersion: string): void {
94 expect(cmdArgs[0].indexOf(ES2ABC_PATH) > 0).to.be.true;
95 expect(cmdArgs[1] === ENTRY_LIST).to.be.true;
96 expect(cmdArgs[2] === OUTPUT).to.be.true;
97 expect(cmdArgs[3] === FILE_THREADS).to.be.true;
98 expect(cmdArgs[4] === `\"${fileThreads}\"`).to.be.true;
99 expect(cmdArgs[5] === MERGE_ABC).to.be.true;
100 expect(cmdArgs[6].indexOf(compatibleSdkVersion) > 0).to.be.true;
1294 expect(moduleMode.cmdArgs[1] === DEBUG_INFO).to.be.true;
1295 moduleMode.cmdArgs.splice(1, 1);
[all …]
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_hotfix_mode.ts48 this.cmdArgs.push(`"@${this.filesInfoPath}"`);
49 this.cmdArgs.push('--npm-module-entry-list');
50 this.cmdArgs.push(`"${this.npmEntriesInfoPath}"`);
51 this.cmdArgs.push('--output');
52 this.cmdArgs.push(`"${this.moduleAbcPath}"`);
53 this.cmdArgs.push('--file-threads');
54 this.cmdArgs.push(`"${fileThreads}"`);
55 this.cmdArgs.push(`"--target-api-version=${this.projectConfig.compatibleSdkVersion}"`);
59 this.cmdArgs.push('--input-symbol-table');
60 this.cmdArgs.push(`"${oldHapSymbolTable}"`);
[all …]
Dmodule_hotreload_mode.ts64 this.cmdArgs.push('--dump-symbol-table');
65 this.cmdArgs.push(`"${this.symbolMapFilePath}"`);
69 this.cmdArgs.push('--input-symbol-table');
70 this.cmdArgs.push(`"${this.symbolMapFilePath}"`);
71 this.cmdArgs.push('--hot-reload');
Dmodule_coldreload_mode.ts64 this.cmdArgs.push('--dump-symbol-table');
65 this.cmdArgs.push(`"${this.symbolMapFilePath}"`);
69 this.cmdArgs.push('--input-symbol-table');
70 this.cmdArgs.push(`"${this.symbolMapFilePath}"`);
71 this.cmdArgs.push('--cold-reload');
Dmodule_mode.ts399 this.cmdArgs.push(`"@${this.filesInfoPath}"`);
400 this.cmdArgs.push('--npm-module-entry-list');
401 this.cmdArgs.push(`"${this.npmEntriesInfoPath}"`);
402 this.cmdArgs.push('--output');
403 this.cmdArgs.push(`"${this.moduleAbcPath}"`);
404 this.cmdArgs.push('--file-threads');
405 this.cmdArgs.push(`"${fileThreads}"`);
406 this.cmdArgs.push('--merge-abc');
407 this.cmdArgs.push(`"--target-api-version=${this.projectConfig.compatibleSdkVersion}"`);
409 this.cmdArgs.push(`--transform-lib`);
[all …]
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/
Dcommon_mode.ts47 cmdArgs: string[] = []; property in CommonMode
58 this.cmdArgs = this.initCmdEnv();
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/
Dbundle_mode.ts171 this.cmdArgs.push(
203 const genAbcCmd: string = this.cmdArgs.join(' ');
282 cmd: this.cmdArgs.join(' '),