5 references to GetEffectiveDiagnostics
Microsoft.CodeAnalysis.CodeStyle (1)
src\Analyzers\Core\Analyzers\RemoveUnnecessarySuppressions\AbstractRemoveUnnecessaryPragmaSuppressionsDiagnosticAnalyzer.cs (1)
621var effectiveDiagnostics = CompilationWithAnalyzers.GetEffectiveDiagnostics(diagnosticsBuilder, compilation);
Microsoft.CodeAnalysis.Test.Utilities (1)
Diagnostics\DiagnosticExtensions.cs (1)
341return CompilationWithAnalyzers.GetEffectiveDiagnostics(diagnostics, compilation);
Microsoft.CodeAnalysis.UnitTests (3)
Diagnostics\CompilationWithAnalyzersTests.cs (3)
32Assert.Throws<ArgumentNullException>(() => CompilationWithAnalyzers.GetEffectiveDiagnostics(null, c)); 33Assert.Throws<ArgumentNullException>(() => CompilationWithAnalyzers.GetEffectiveDiagnostics(ds, null)); 47var filtered = CompilationWithAnalyzers.GetEffectiveDiagnostics(ds, c);