Skip to content

Commit 8294259

Browse files
committed
Remove all reference comments from compiler/
1 parent 556a801 commit 8294259

35 files changed

+0
-127
lines changed

src/compiler/binder.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
/// <reference path="utilities.ts"/>
2-
/// <reference path="parser.ts"/>
3-
41
/* @internal */
52
namespace ts {
63
export const enum ModuleInstanceState {

src/compiler/builder.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference path="builderState.ts" />
2-
31
/*@internal*/
42
namespace ts {
53
/**

src/compiler/builderState.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/// <reference path="program.ts" />
21
namespace ts {
32
export interface EmitOutput {
43
outputFiles: OutputFile[];

src/compiler/checker.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/// <reference path="moduleNameResolver.ts"/>
2-
/// <reference path="binder.ts"/>
3-
/// <reference path="symbolWalker.ts" />
4-
51
/* @internal */
62
namespace ts {
73
const ambientModuleSymbolRegex = /^".+"$/;

src/compiler/commandLineParser.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
/// <reference path="sys.ts"/>
2-
/// <reference path="types.ts"/>
3-
/// <reference path="core.ts"/>
4-
/// <reference path="diagnosticInformationMap.generated.ts"/>
5-
/// <reference path="parser.ts"/>
6-
71
namespace ts {
82
/* @internal */
93
export const compileOnSaveCommandLineOption: CommandLineOption = { name: "compileOnSave", type: "boolean" };

src/compiler/comments.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference path="sourcemap.ts" />
2-
31
/* @internal */
42
namespace ts {
53
export interface CommentWriter {

src/compiler/core.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
/// <reference path="types.ts"/>
2-
/// <reference path="performance.ts" />
3-
41
namespace ts {
52
// WARNING: The script `configureNightly.ts` uses a regexp to parse out these values.
63
// If changing the text in this section, be sure to test `configureNightly` too.

src/compiler/emitter.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
/// <reference path="checker.ts" />
2-
/// <reference path="transformer.ts" />
3-
/// <reference path="sourcemap.ts" />
4-
/// <reference path="comments.ts" />
5-
61
namespace ts {
72
const brackets = createBracketsMap();
83

src/compiler/factory.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
/// <reference path="core.ts"/>
2-
/// <reference path="utilities.ts"/>
3-
41
namespace ts {
52
function createSynthesizedNode(kind: SyntaxKind): Node {
63
const node = createNode(kind, -1, -1);

src/compiler/moduleNameResolver.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
/// <reference path="core.ts" />
2-
/// <reference path="diagnosticInformationMap.generated.ts" />
3-
41
namespace ts {
52
/* @internal */
63
export function trace(host: ModuleResolutionHost, message: DiagnosticMessage, ...args: any[]): void;

0 commit comments

Comments
 (0)