@@ -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" ,
@@ -252,8 +254,6 @@ function compileFile(outFile, sources, prereqs, prefixes, useBuiltCompiler, noOu
252254 options += " --stripInternal"
253255 }
254256
255- options += " --cacheDownlevelForOfLength --preserveNewLines" ;
256-
257257 var cmd = host + " " + dir + compilerFilename + " " + options + " " ;
258258 cmd = cmd + sources . join ( " " ) ;
259259 console . log ( cmd + "\n" ) ;
@@ -539,7 +539,7 @@ function cleanTestDirs() {
539539 }
540540
541541 jake . mkdirP ( localRwcBaseline ) ;
542- jake . mkdirP ( localTest262Baseline ) ;
542+ jake . mkdirP ( localTest262Baseline ) ;
543543 jake . mkdirP ( localBaseline ) ;
544544}
545545
@@ -718,7 +718,7 @@ file(loggedIOJsPath, [builtLocalDirectory, loggedIOpath], function() {
718718
719719var instrumenterPath = harnessDirectory + 'instrumenter.ts' ;
720720var instrumenterJsPath = builtLocalDirectory + 'instrumenter.js' ;
721- compileFile ( instrumenterJsPath , [ instrumenterPath ] , [ tscFile , instrumenterPath ] , [ ] , /*useBuiltCompiler*/ true ) ;
721+ compileFile ( instrumenterJsPath , [ instrumenterPath ] , [ tscFile , instrumenterPath ] . concat ( libraryTargets ) , [ ] , /*useBuiltCompiler*/ true ) ;
722722
723723desc ( "Builds an instrumented tsc.js" ) ;
724724task ( 'tsc-instrumented' , [ loggedIOJsPath , instrumenterJsPath , tscFile ] , function ( ) {
0 commit comments