Make fields internal.

This commit is contained in:
Cyrus Najmabadi
2015-03-02 14:08:32 -08:00
parent 08439b7a89
commit e452cff5a7
9 changed files with 4 additions and 59 deletions

View File

@@ -58,9 +58,10 @@ module ts {
}
export interface SourceFile {
version: string;
scriptSnapshot: IScriptSnapshot;
nameTable: Map<string>;
/* @internal */ version: string;
/* @internal */ scriptSnapshot: IScriptSnapshot;
/* @internal */ nameTable: Map<string>;
getNamedDeclarations(): Declaration[];
getLineAndCharacterOfPosition(pos: number): LineAndCharacter;
getLineStarts(): number[];