2 instantiations of AnalyzerWithDisabledRules
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (1)
Diagnostics\DiagnosticAnalyzerTests.cs (1)
4176
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)
4176
var
analyzer = new AnalyzerWithDisabledRules();
4186
new TestSyntaxTreeOptionsProvider(tree1, (
AnalyzerWithDisabledRules
.Rule.Id, ReportDiagnostic.Warn)));
4196
.WithSpecificDiagnosticOptions(ImmutableDictionary<string, ReportDiagnostic>.Empty.Add(
AnalyzerWithDisabledRules
.Rule.Id, ReportDiagnostic.Warn))
4198
(tree2, new[] { (
AnalyzerWithDisabledRules
.Rule.Id, ReportDiagnostic.Suppress) }),
4199
(tree3, new[] { (
AnalyzerWithDisabledRules
.Rule.Id, ReportDiagnostic.Suppress) })));