File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -192,12 +192,12 @@ module ts {
192
192
}
193
193
194
194
return {
195
- getSourceFile : getSourceFile ,
195
+ getSourceFile,
196
196
getDefaultLibFilename : ( ) => combinePaths ( getDirectoryPath ( normalizePath ( sys . getExecutingFilePath ( ) ) ) , "lib.d.ts" ) ,
197
- writeFile : writeFile ,
197
+ writeFile,
198
198
getCurrentDirectory : ( ) => currentDirectory || ( currentDirectory = sys . getCurrentDirectory ( ) ) ,
199
199
useCaseSensitiveFileNames : ( ) => sys . useCaseSensitiveFileNames ,
200
- getCanonicalFileName : getCanonicalFileName ,
200
+ getCanonicalFileName,
201
201
getNewLine : ( ) => sys . newLine
202
202
} ;
203
203
}
@@ -367,7 +367,7 @@ module ts {
367
367
}
368
368
else {
369
369
var emitStart = new Date ( ) . getTime ( ) ;
370
- var emitOutput = checker . emitFiles ( ) ;
370
+ var emitOutput = checker . invokeEmitter ( ) ;
371
371
var emitErrors = emitOutput . errors ;
372
372
exitStatus = emitOutput . emitResultStatus ;
373
373
var reportStart = new Date ( ) . getTime ( ) ;
@@ -394,7 +394,7 @@ module ts {
394
394
reportTimeStatistic ( "Total time" , reportStart - parseStart ) ;
395
395
}
396
396
397
- return { program : program , exitStatus : exitStatus }
397
+ return { program, exitStatus } ;
398
398
}
399
399
400
400
function printVersion ( ) {
You can’t perform that action at this time.
0 commit comments