Skip to content

Commit e8b0985

Browse files
committed
Merge pull request microsoft#2417 from Microsoft/separateDeclEmit_2
extract declaration emitter to separate file (part 2)
2 parents d06f71e + 49c4b5a commit e8b0985

File tree

4 files changed

+1796
-1786
lines changed

4 files changed

+1796
-1786
lines changed

Jakefile

+4-2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ var compilerSources = [
3939
"utilities.ts",
4040
"binder.ts",
4141
"checker.ts",
42+
"declarationEmitter.ts",
4243
"emitter.ts",
4344
"program.ts",
4445
"commandLineParser.ts",
@@ -57,6 +58,7 @@ var servicesSources = [
5758
"utilities.ts",
5859
"binder.ts",
5960
"checker.ts",
61+
"declarationEmitter.ts",
6062
"emitter.ts",
6163
"program.ts",
6264
"commandLineParser.ts",
@@ -65,7 +67,7 @@ var servicesSources = [
6567
return path.join(compilerDirectory, f);
6668
}).concat([
6769
"breakpoints.ts",
68-
"navigateTo.ts",
70+
"navigateTo.ts",
6971
"navigationBar.ts",
7072
"outliningElementsCollector.ts",
7173
"patternMatcher.ts",
@@ -539,7 +541,7 @@ function cleanTestDirs() {
539541
}
540542

541543
jake.mkdirP(localRwcBaseline);
542-
jake.mkdirP(localTest262Baseline);
544+
jake.mkdirP(localTest262Baseline);
543545
jake.mkdirP(localBaseline);
544546
}
545547

0 commit comments

Comments
 (0)