File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ namespace ts {
60
60
61
61
sys . write ( `${ sys . getExecutingFilePath ( ) } ${ commandLineArgs . join ( " " ) } \n` ) ;
62
62
sys . exit = exitCode => sys . exitCode = exitCode ;
63
- ts . executeCommandLine (
63
+ executeCommandLine (
64
64
sys ,
65
65
{
66
66
onCompilerHostCreate : host => fakes . patchHostForBuildInfoReadWrite ( host ) ,
Original file line number Diff line number Diff line change @@ -605,8 +605,8 @@ namespace ts {
605
605
createWatchProgram ( watchCompilerHost ) ;
606
606
}
607
607
608
- function canReportDiagnostics ( sys : System , compilerOptions : CompilerOptions ) {
609
- return sys === ts . sys && ( compilerOptions . diagnostics || compilerOptions . extendedDiagnostics ) ;
608
+ function canReportDiagnostics ( system : System , compilerOptions : CompilerOptions ) {
609
+ return system === sys && ( compilerOptions . diagnostics || compilerOptions . extendedDiagnostics ) ;
610
610
}
611
611
612
612
function enableStatistics ( sys : System , compilerOptions : CompilerOptions ) {
You can’t perform that action at this time.
0 commit comments