File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ import {
8181 classOrConstructorParameterIsDecorated,
8282 ClassStaticBlockDeclaration,
8383 clear,
84+ compareComparableValues,
8485 compareDiagnostics,
8586 comparePaths,
8687 compareValues,
@@ -1133,7 +1134,6 @@ import {
11331134 WideningContext,
11341135 WithStatement,
11351136 YieldExpression,
1136- compareComparableValues,
11371137} from "./_namespaces/ts.js";
11381138import * as moduleSpecifiers from "./_namespaces/ts.moduleSpecifiers.js";
11391139import * as performance from "./_namespaces/ts.performance.js";
@@ -1492,7 +1492,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
14921492 var cancellationToken: CancellationToken | undefined;
14931493
14941494 var scanner: Scanner | undefined;
1495-
1495+
14961496 var fileIndexMap = new Map(host.getSourceFiles().map((file, i) => [file, i]));
14971497
14981498 var Symbol = objectAllocator.getSymbolConstructor();
@@ -52848,7 +52848,6 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
5284852848 // In the same file, order by source position
5284952849 return n1.pos - n2.pos;
5285052850 }
52851-
5285252851}
5285352852
5285452853function isNotAccessor(declaration: Declaration): boolean {
You can’t perform that action at this time.
0 commit comments