4 instantiations of CompilerDiagnostic
Microsoft.CodeAnalysis (4)
DiagnosticAnalyzer\CompilerDiagnosticAnalyzer.CompilationAnalyzer.cs (4)
70
var current = properties == null ? diagnostic : new
CompilerDiagnostic
(diagnostic, properties);
124
return new
CompilerDiagnostic
(_original.WithLocation(location), _properties);
129
return new
CompilerDiagnostic
(_original.WithSeverity(severity), _properties);
134
return new
CompilerDiagnostic
(_original.WithIsSuppressed(isSuppressed), _properties);
1 reference to CompilerDiagnostic
Microsoft.CodeAnalysis (1)
DiagnosticAnalyzer\CompilerDiagnosticAnalyzer.CompilationAnalyzer.cs (1)
118
return obj is
CompilerDiagnostic
other &&