Skip to content

Commit a72994d

Browse files
committed
removed extra whitespaces, added commments
1 parent 49ad395 commit a72994d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/compiler/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1275,6 +1275,7 @@ namespace ts {
12751275
/* @internal */ lineMap: number[];
12761276
/* @internal */ classifiableNames?: Map<string>;
12771277
// Stores a mapping 'external module reference text' -> 'resolved file name' | undefined
1278+
// It is used to resolve module names in the checker.
12781279
// Content of this fiels should never be used directly - use getResolvedModuleFileName/setResolvedModuleFileName functions instead
12791280
/* @internal */ resolvedModules: Map<string>;
12801281
/* @internal */ imports: LiteralExpression[];

src/services/shims.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ namespace ts {
547547
private realizeDiagnostics(diagnostics: Diagnostic[]): { message: string; start: number; length: number; category: string; }[]{
548548
var newLine = this.getNewLine();
549549
return ts.realizeDiagnostics(diagnostics, newLine);
550-
}
550+
}
551551

552552
public getSyntacticClassifications(fileName: string, start: number, length: number): string {
553553
return this.forwardJSONCall(

0 commit comments

Comments
 (0)