1 instantiation of CompilationCompletedEvent
Microsoft.CodeAnalysis (1)
Compilation\Compilation.cs (1)
1802
EventQueue.TryEnqueue(new
CompilationCompletedEvent
(this));
13 references to CompilationCompletedEvent
Microsoft.CodeAnalysis (13)
DiagnosticAnalyzer\AnalyzerDriver.cs (10)
655
/// <param name="usingPrePopulatedEventQueue">Boolean flag indicating whether we should only process the already populated events or wait for <see cref="
CompilationCompletedEvent
"/>.</param>
1430
CompilationCompletedEvent
? completedEvent = null;
1439
var workerTasks = new Task<
CompilationCompletedEvent
?>[workerCount];
1486
private async Task<
CompilationCompletedEvent
?> ProcessCompilationEventsCoreAsync(AnalysisScope analysisScope, bool prePopulatedEventQueue, CancellationToken cancellationToken)
1490
CompilationCompletedEvent
? completedEvent = null;
1528
if (compilationEvent is
CompilationCompletedEvent
compilationCompletedEvent)
1589
case
CompilationCompletedEvent
compilationCompletedEvent:
1639
case
CompilationCompletedEvent
endEvent:
1841
private void ProcessCompilationCompleted(
CompilationCompletedEvent
endEvent, AnalysisScope analysisScope)
1851
Debug.Assert(compilationEvent is CompilationStartedEvent || compilationEvent is
CompilationCompletedEvent
);
DiagnosticAnalyzer\AnalyzerExecutor.cs (1)
384
Debug.Assert(compilationEvent is CompilationStartedEvent || compilationEvent is
CompilationCompletedEvent
);
DiagnosticAnalyzer\CachingSemanticModelProvider.cs (1)
19
/// Similarly, it clears the entire compilation wide cache whenever a <see cref="
CompilationCompletedEvent
"/> has been processed,
DiagnosticAnalyzer\CompilationWithAnalyzers.cs (1)
1027
case
CompilationCompletedEvent
: