@@ -222,7 +222,7 @@ func tscCompilation(sys tsc.System, commandLine *tsoptions.ParsedCommandLine, te
222222 reportDiagnostic ,
223223 reportErrorSummary ,
224224 extendedConfigCache ,
225- compileTimes ,
225+ & compileTimes ,
226226 testing ,
227227 )
228228 }
@@ -232,7 +232,7 @@ func tscCompilation(sys tsc.System, commandLine *tsoptions.ParsedCommandLine, te
232232 reportDiagnostic ,
233233 reportErrorSummary ,
234234 extendedConfigCache ,
235- compileTimes ,
235+ & compileTimes ,
236236 testing ,
237237 )
238238}
@@ -261,7 +261,7 @@ func performIncrementalCompilation(
261261 reportDiagnostic tsc.DiagnosticReporter ,
262262 reportErrorSummary tsc.DiagnosticsReporter ,
263263 extendedConfigCache tsoptions.ExtendedConfigCache ,
264- compileTimes tsc.CompileTimes ,
264+ compileTimes * tsc.CompileTimes ,
265265 testing tsc.CommandLineTesting ,
266266) tsc.CommandLineResult {
267267 host := compiler .NewCachedFSCompilerHost (sys .GetCurrentDirectory (), sys .FS (), sys .DefaultLibraryPath (), extendedConfigCache , getTraceFromSys (sys , testing ))
@@ -304,7 +304,7 @@ func performCompilation(
304304 reportDiagnostic tsc.DiagnosticReporter ,
305305 reportErrorSummary tsc.DiagnosticsReporter ,
306306 extendedConfigCache tsoptions.ExtendedConfigCache ,
307- compileTimes tsc.CompileTimes ,
307+ compileTimes * tsc.CompileTimes ,
308308 testing tsc.CommandLineTesting ,
309309) tsc.CommandLineResult {
310310 host := compiler .NewCachedFSCompilerHost (sys .GetCurrentDirectory (), sys .FS (), sys .DefaultLibraryPath (), extendedConfigCache , getTraceFromSys (sys , testing ))
0 commit comments