Home
last modified time | relevance | path

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

/developtools/ace_ets2bundle/compiler/src/
Dets_checker.ts440 export const shouldResolvedFiles: Set<string> = new Set(); constant
759 if (![...shouldResolvedFiles].length || shouldResolvedFiles.has(path.resolve(containingFile))
1206 function judgeFileShouldResolved(file: string, shouldResolvedFiles: Set<string>): void {
1207 if (shouldResolvedFiles.has(file)) {
1210 shouldResolvedFiles.add(file);
1213 judgeFileShouldResolved(item, shouldResolvedFiles);
1219 judgeFileShouldResolved(item, shouldResolvedFiles);
1229 shouldResolvedFiles.clear();
1232 judgeFileShouldResolved(file, shouldResolvedFiles);