@@ -86,7 +86,7 @@ public static ExitCode Run(string[] args)
8686 var canonicalPathCache = CanonicalPathCache . Create ( logger , 1000 ) ;
8787 var pathTransformer = new PathTransformer ( canonicalPathCache ) ;
8888
89- using var analyser = new NonStandaloneAnalyser ( new LogProgressMonitor ( logger ) , logger , options . AssemblySensitiveTrap , pathTransformer ) ;
89+ using var analyser = new TracingAnalyser ( new LogProgressMonitor ( logger ) , logger , options . AssemblySensitiveTrap , pathTransformer ) ;
9090
9191 try
9292 {
@@ -120,7 +120,7 @@ public static ExitCode Run(string[] args)
120120 return ExitCode . Ok ;
121121 }
122122
123- return AnalyseNonStandalone ( analyser , compilerArguments , options , canonicalPathCache , stopwatch ) ;
123+ return AnalyseTracing ( analyser , compilerArguments , options , canonicalPathCache , stopwatch ) ;
124124 }
125125 catch ( Exception ex ) // lgtm[cs/catch-of-all-exceptions]
126126 {
@@ -291,7 +291,7 @@ private static ExitCode Analyse(Stopwatch stopwatch, Analyser analyser, CommonOp
291291 {
292292 analyser . Logger . Log ( Severity . Error , " No source files" ) ;
293293 ++ analyser . CompilationErrors ;
294- if ( analyser is NonStandaloneAnalyser )
294+ if ( analyser is TracingAnalyser )
295295 {
296296 return ExitCode . Failed ;
297297 }
@@ -369,8 +369,8 @@ private static void AnalyseStandalone(
369369 } ) ;
370370 }
371371
372- private static ExitCode AnalyseNonStandalone (
373- NonStandaloneAnalyser analyser ,
372+ private static ExitCode AnalyseTracing (
373+ TracingAnalyser analyser ,
374374 CSharpCommandLineArguments compilerArguments ,
375375 Options options ,
376376 CanonicalPathCache canonicalPathCache ,
0 commit comments