Skip to content

Commit 9683b0a

Browse files
committed
CONVERSION STEP - stripNamespaces
1 parent d197ea1 commit 9683b0a

File tree

555 files changed

+306477
-303423
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

555 files changed

+306477
-303423
lines changed

Diff for: src/compiler/binder.ts

+3,540-3,538
Large diffs are not rendered by default.

Diff for: src/compiler/builder.ts

+1,484-1,462
Large diffs are not rendered by default.

Diff for: src/compiler/builderPublic.ts

+173-173
Large diffs are not rendered by default.

Diff for: src/compiler/builderState.ts

+652-649
Large diffs are not rendered by default.

Diff for: src/compiler/builderStatePublic.ts

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
namespace ts {
2-
export interface EmitOutput {
3-
outputFiles: OutputFile[];
4-
emitSkipped: boolean;
5-
/* @internal */ diagnostics: readonly ts.Diagnostic[];
6-
/* @internal */ exportedModulesFromDeclarationEmit?: ts.ExportedModulesFromDeclarationEmit;
7-
}
8-
9-
export interface OutputFile {
10-
name: string;
11-
writeByteOrderMark: boolean;
12-
text: string;
13-
}
1+
import * as ts from "./ts";
2+
3+
export interface EmitOutput {
4+
outputFiles: OutputFile[];
5+
emitSkipped: boolean;
6+
/* @internal */ diagnostics: readonly ts.Diagnostic[];
7+
/* @internal */ exportedModulesFromDeclarationEmit?: ts.ExportedModulesFromDeclarationEmit;
8+
}
9+
10+
export interface OutputFile {
11+
name: string;
12+
writeByteOrderMark: boolean;
13+
text: string;
1414
}

Diff for: src/compiler/checker.ts

+45,240-45,235
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)