2 instantiations of AnalyzerWithDisabledRules
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (1)
Diagnostics\DiagnosticAnalyzerTests.cs (1)
4175
var analyzer = new
AnalyzerWithDisabledRules
();
Microsoft.CodeAnalysis.UnitTests (1)
Diagnostics\CompilationWithAnalyzersTests.cs (1)
59
DiagnosticAnalyzer analyzer = new
AnalyzerWithDisabledRules
();
5 references to AnalyzerWithDisabledRules
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (5)
Diagnostics\DiagnosticAnalyzerTests.cs (5)
4175
var
analyzer = new AnalyzerWithDisabledRules();
4185
new TestSyntaxTreeOptionsProvider(tree1, (
AnalyzerWithDisabledRules
.Rule.Id, ReportDiagnostic.Warn)));
4195
.WithSpecificDiagnosticOptions(ImmutableDictionary<string, ReportDiagnostic>.Empty.Add(
AnalyzerWithDisabledRules
.Rule.Id, ReportDiagnostic.Warn))
4197
(tree2, new[] { (
AnalyzerWithDisabledRules
.Rule.Id, ReportDiagnostic.Suppress) }),
4198
(tree3, new[] { (
AnalyzerWithDisabledRules
.Rule.Id, ReportDiagnostic.Suppress) })));