Home
last modified time | relevance | path

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

/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/
Dutils.ts26 EXTNAME_JS,
91 removeCacheFile(cacheFilePath, hasTsNoCheckOrTsIgnore ? EXTNAME_TS : EXTNAME_JS);
95 cacheFilePath = toUnixPath(changeFileExtension(cacheFilePath, EXTNAME_JS));
122 case EXTNAME_JS:
137 if (!isSpecifiedExt(sourceFilePath, EXTNAME_JS)) {
138 filePath = changeFileExtension(filePath, EXTNAME_JS);
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/
Dark_define.ts47 export const EXTNAME_JS: string = '.js'; constant
/developtools/ace_ets2bundle/compiler/src/
Dcompile_info.ts49 EXTNAME_JS,
123 if (path.extname(key) === EXTNAME_JS || path.extname(key) === EXTNAME_JS_MAP) {
Dark_utils.ts29 EXTNAME_JS,
434 filePath = filePath.replace(/\.mjs$/, EXTNAME_JS);
437 filePath = filePath.replace(/\.cjs$/, EXTNAME_JS);
483 jsFilePath = jsFilePath.replace(/\.ets$/, EXTNAME_JS);
485 jsFilePath = jsFilePath.replace(/\.ts$/, EXTNAME_JS);
Dgen_abc_plugin.ts58 EXTNAME_JS,
245 if (path.extname(key) === EXTNAME_JS || path.extname(key) === EXTNAME_JS_MAP) {
258 if (output && path.extname(key) === EXTNAME_JS) {
400 tempFilePath = tempFilePath.replace(/\.ets$/, EXTNAME_JS);
401 buildFilePath = buildFilePath.replace(/\.ets$/, EXTNAME_JS);
420 tempFilePath = tempFilePath.replace(/\.ts$/, EXTNAME_JS);
421 buildFilePath = buildFilePath.replace(/\.ts$/, EXTNAME_JS);
561 case EXTNAME_JS:
1114 case EXTNAME_JS:
Dpre_define.ts408 export const EXTNAME_JS: string = '.js'; constant
Dets_checker.ts46 EXTNAME_JS,
515 path.extname(result.resolvedModule.resolvedFileName) === EXTNAME_JS) {
517 result.resolvedModule.resolvedFileName.replace(EXTNAME_JS, EXTNAME_D_ETS);
Dutils.ts33 EXTNAME_JS,
317 filePath = toUnixPath(filePath).replace(/\.[cm]js$/, EXTNAME_JS);
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_mode.ts27 EXTNAME_JS,
227 …e: string = shouldETSOrTSFileTransformToJS(moduleId, this.projectConfig) ? EXTNAME_JS : EXTNAME_TS;
232 …t extName: string = shouldETSOrTSFileTransformToJS(moduleId, this.projectConfig) ? EXTNAME_JS : '';
236 case EXTNAME_JS:
239 …ame: string = (moduleId.endsWith(EXTNAME_MJS) || moduleId.endsWith(EXTNAME_CJS)) ? EXTNAME_JS : '';
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/
Dbundle_mode.ts33 EXTNAME_JS,
87 if (this.projectConfig.aceModuleBuild && isSpecifiedExt(fileName, EXTNAME_JS)) {