removed extra whitespaces, added commments

This commit is contained in:
Vladimir Matveev
2015-08-04 15:27:16 -07:00
parent 49ad395de1
commit a72994d78c
2 changed files with 2 additions and 1 deletions

View File

@@ -1275,6 +1275,7 @@ namespace ts {
/* @internal */ lineMap: number[];
/* @internal */ classifiableNames?: Map<string>;
// Stores a mapping 'external module reference text' -> 'resolved file name' | undefined
// It is used to resolve module names in the checker.
// Content of this fiels should never be used directly - use getResolvedModuleFileName/setResolvedModuleFileName functions instead
/* @internal */ resolvedModules: Map<string>;
/* @internal */ imports: LiteralExpression[];

View File

@@ -547,7 +547,7 @@ namespace ts {
private realizeDiagnostics(diagnostics: Diagnostic[]): { message: string; start: number; length: number; category: string; }[]{
var newLine = this.getNewLine();
return ts.realizeDiagnostics(diagnostics, newLine);
}
}
public getSyntacticClassifications(fileName: string, start: number, length: number): string {
return this.forwardJSONCall(