forked from microsoft/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This step converts as many explicit accesses as possible in favor of direct imports from the modules in which things were declared. This restores the code (as much as possible) back to how it looked originally before the explicitify step, e.g. instead of "ts.Node" and "ts.Symbol", we have just "Node" and "Symbol".
- Loading branch information
1 parent
3134381
commit f3766ee
Showing
238 changed files
with
58,899 additions
and
55,910 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import * as ts from "./_namespaces/ts"; | ||
import { BuildInfo, Diagnostic } from "./_namespaces/ts"; | ||
|
||
export interface EmitOutput { | ||
outputFiles: OutputFile[]; | ||
emitSkipped: boolean; | ||
/* @internal */ diagnostics: readonly ts.Diagnostic[]; | ||
/* @internal */ diagnostics: readonly Diagnostic[]; | ||
} | ||
|
||
export interface OutputFile { | ||
name: string; | ||
writeByteOrderMark: boolean; | ||
text: string; | ||
/* @internal */ buildInfo?: ts.BuildInfo | ||
/* @internal */ buildInfo?: BuildInfo | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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.