Skip to content

Commit 40b2b38

Browse files
committed
fmt
1 parent f6f2a30 commit 40b2b38

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/compiler/checker.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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";
11381138
import * as moduleSpecifiers from "./_namespaces/ts.moduleSpecifiers.js";
11391139
import * 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

5285452853
function isNotAccessor(declaration: Declaration): boolean {

0 commit comments

Comments
 (0)