-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1914 from Microsoft/internalAPIs
Remove certain lazyily initialized fields from the public DTS.
- Loading branch information
Showing
14 changed files
with
60 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -728,18 +728,13 @@ declare module "typescript" { | |
amdDependencies: string[]; | ||
amdModuleName: string; | ||
referencedFiles: FileReference[]; | ||
referenceDiagnostics: Diagnostic[]; | ||
parseDiagnostics: Diagnostic[]; | ||
semanticDiagnostics: Diagnostic[]; | ||
syntacticDiagnostics: Diagnostic[]; | ||
hasNoDefaultLib: boolean; | ||
externalModuleIndicator: Node; | ||
nodeCount: number; | ||
identifierCount: number; | ||
symbolCount: number; | ||
languageVersion: ScriptTarget; | ||
identifiers: Map<string>; | ||
lineMap: number[]; | ||
} | ||
interface ScriptReferenceHost { | ||
getCompilerOptions(): CompilerOptions; | ||
|
@@ -1186,6 +1181,7 @@ declare module "typescript" { | |
target?: ScriptTarget; | ||
version?: boolean; | ||
watch?: boolean; | ||
stripInternal?: boolean; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
mhegazy
Contributor
|
||
[option: string]: string | number | boolean; | ||
} | ||
const enum ModuleKind { | ||
|
@@ -1216,6 +1212,7 @@ declare module "typescript" { | |
description?: DiagnosticMessage; | ||
paramType?: DiagnosticMessage; | ||
error?: DiagnosticMessage; | ||
experimental?: boolean; | ||
} | ||
const enum CharacterCodes { | ||
nullCharacter = 0, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Could somebody put a few lines documenting this feature please?