Home
last modified time | relevance | path

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

/developtools/ace_ets2bundle/compiler/src/
Dprocess_import.ts124 const fileResolvePath: string = getFileFullPath(filePath, pagesDir); constant
125 if (fs.existsSync(fileResolvePath) && fs.statSync(fileResolvePath).isFile() &&
126 !pathCollection.has(fileResolvePath)) {
128 pathCollection.add(fileResolvePath);
129 if (IMPORT_FILE_ASTCACHE.has(fileResolvePath)) {
130 sourceFile = IMPORT_FILE_ASTCACHE.get(fileResolvePath);
132 sourceFile = generateSourceFileAST(fileResolvePath, filePath);
133 IMPORT_FILE_ASTCACHE[fileResolvePath] = sourceFile;
135 visitAllNode(sourceFile, sourceFile, defaultName, asName, path.dirname(fileResolvePath), log,
136 …), new Set(), new Set(), new Map(), pathCollection, fileResolvePath, /\.d\.ets$/.test(fileResolveP…
[all …]