mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-14 19:16:17 -06:00
Make fields internal.
This commit is contained in:
parent
08439b7a89
commit
e452cff5a7
@ -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[];
|
||||
|
||||
@ -1518,9 +1518,6 @@ declare module "typescript" {
|
||||
getDocumentationComment(): SymbolDisplayPart[];
|
||||
}
|
||||
interface SourceFile {
|
||||
version: string;
|
||||
scriptSnapshot: IScriptSnapshot;
|
||||
nameTable: Map<string>;
|
||||
getNamedDeclarations(): Declaration[];
|
||||
getLineAndCharacterOfPosition(pos: number): LineAndCharacter;
|
||||
getLineStarts(): number[];
|
||||
|
||||
@ -4896,17 +4896,6 @@ declare module "typescript" {
|
||||
interface SourceFile {
|
||||
>SourceFile : SourceFile
|
||||
|
||||
version: string;
|
||||
>version : string
|
||||
|
||||
scriptSnapshot: IScriptSnapshot;
|
||||
>scriptSnapshot : IScriptSnapshot
|
||||
>IScriptSnapshot : IScriptSnapshot
|
||||
|
||||
nameTable: Map<string>;
|
||||
>nameTable : Map<string>
|
||||
>Map : Map<T>
|
||||
|
||||
getNamedDeclarations(): Declaration[];
|
||||
>getNamedDeclarations : () => Declaration[]
|
||||
>Declaration : Declaration
|
||||
|
||||
@ -1549,9 +1549,6 @@ declare module "typescript" {
|
||||
getDocumentationComment(): SymbolDisplayPart[];
|
||||
}
|
||||
interface SourceFile {
|
||||
version: string;
|
||||
scriptSnapshot: IScriptSnapshot;
|
||||
nameTable: Map<string>;
|
||||
getNamedDeclarations(): Declaration[];
|
||||
getLineAndCharacterOfPosition(pos: number): LineAndCharacter;
|
||||
getLineStarts(): number[];
|
||||
|
||||
@ -5042,17 +5042,6 @@ declare module "typescript" {
|
||||
interface SourceFile {
|
||||
>SourceFile : SourceFile
|
||||
|
||||
version: string;
|
||||
>version : string
|
||||
|
||||
scriptSnapshot: IScriptSnapshot;
|
||||
>scriptSnapshot : IScriptSnapshot
|
||||
>IScriptSnapshot : IScriptSnapshot
|
||||
|
||||
nameTable: Map<string>;
|
||||
>nameTable : Map<string>
|
||||
>Map : Map<T>
|
||||
|
||||
getNamedDeclarations(): Declaration[];
|
||||
>getNamedDeclarations : () => Declaration[]
|
||||
>Declaration : Declaration
|
||||
|
||||
@ -1550,9 +1550,6 @@ declare module "typescript" {
|
||||
getDocumentationComment(): SymbolDisplayPart[];
|
||||
}
|
||||
interface SourceFile {
|
||||
version: string;
|
||||
scriptSnapshot: IScriptSnapshot;
|
||||
nameTable: Map<string>;
|
||||
getNamedDeclarations(): Declaration[];
|
||||
getLineAndCharacterOfPosition(pos: number): LineAndCharacter;
|
||||
getLineStarts(): number[];
|
||||
|
||||
@ -4992,17 +4992,6 @@ declare module "typescript" {
|
||||
interface SourceFile {
|
||||
>SourceFile : SourceFile
|
||||
|
||||
version: string;
|
||||
>version : string
|
||||
|
||||
scriptSnapshot: IScriptSnapshot;
|
||||
>scriptSnapshot : IScriptSnapshot
|
||||
>IScriptSnapshot : IScriptSnapshot
|
||||
|
||||
nameTable: Map<string>;
|
||||
>nameTable : Map<string>
|
||||
>Map : Map<T>
|
||||
|
||||
getNamedDeclarations(): Declaration[];
|
||||
>getNamedDeclarations : () => Declaration[]
|
||||
>Declaration : Declaration
|
||||
|
||||
@ -1587,9 +1587,6 @@ declare module "typescript" {
|
||||
getDocumentationComment(): SymbolDisplayPart[];
|
||||
}
|
||||
interface SourceFile {
|
||||
version: string;
|
||||
scriptSnapshot: IScriptSnapshot;
|
||||
nameTable: Map<string>;
|
||||
getNamedDeclarations(): Declaration[];
|
||||
getLineAndCharacterOfPosition(pos: number): LineAndCharacter;
|
||||
getLineStarts(): number[];
|
||||
|
||||
@ -5165,17 +5165,6 @@ declare module "typescript" {
|
||||
interface SourceFile {
|
||||
>SourceFile : SourceFile
|
||||
|
||||
version: string;
|
||||
>version : string
|
||||
|
||||
scriptSnapshot: IScriptSnapshot;
|
||||
>scriptSnapshot : IScriptSnapshot
|
||||
>IScriptSnapshot : IScriptSnapshot
|
||||
|
||||
nameTable: Map<string>;
|
||||
>nameTable : Map<string>
|
||||
>Map : Map<T>
|
||||
|
||||
getNamedDeclarations(): Declaration[];
|
||||
>getNamedDeclarations : () => Declaration[]
|
||||
>Declaration : Declaration
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user