@@ -222,7 +222,7 @@ func tscCompilation(sys tsc.System, commandLine *tsoptions.ParsedCommandLine, te
222
222
reportDiagnostic ,
223
223
reportErrorSummary ,
224
224
extendedConfigCache ,
225
- compileTimes ,
225
+ & compileTimes ,
226
226
testing ,
227
227
)
228
228
}
@@ -232,7 +232,7 @@ func tscCompilation(sys tsc.System, commandLine *tsoptions.ParsedCommandLine, te
232
232
reportDiagnostic ,
233
233
reportErrorSummary ,
234
234
extendedConfigCache ,
235
- compileTimes ,
235
+ & compileTimes ,
236
236
testing ,
237
237
)
238
238
}
@@ -261,7 +261,7 @@ func performIncrementalCompilation(
261
261
reportDiagnostic tsc.DiagnosticReporter ,
262
262
reportErrorSummary tsc.DiagnosticsReporter ,
263
263
extendedConfigCache tsoptions.ExtendedConfigCache ,
264
- compileTimes tsc.CompileTimes ,
264
+ compileTimes * tsc.CompileTimes ,
265
265
testing tsc.CommandLineTesting ,
266
266
) tsc.CommandLineResult {
267
267
host := compiler .NewCachedFSCompilerHost (sys .GetCurrentDirectory (), sys .FS (), sys .DefaultLibraryPath (), extendedConfigCache , getTraceFromSys (sys , testing ))
@@ -304,7 +304,7 @@ func performCompilation(
304
304
reportDiagnostic tsc.DiagnosticReporter ,
305
305
reportErrorSummary tsc.DiagnosticsReporter ,
306
306
extendedConfigCache tsoptions.ExtendedConfigCache ,
307
- compileTimes tsc.CompileTimes ,
307
+ compileTimes * tsc.CompileTimes ,
308
308
testing tsc.CommandLineTesting ,
309
309
) tsc.CommandLineResult {
310
310
host := compiler .NewCachedFSCompilerHost (sys .GetCurrentDirectory (), sys .FS (), sys .DefaultLibraryPath (), extendedConfigCache , getTraceFromSys (sys , testing ))
0 commit comments