1 type derived from DiagnosticInfoWithSymbols
Microsoft.CodeAnalysis.CSharp (1)
Errors\CSDiagnosticInfo.cs (1)
16internal sealed class CSDiagnosticInfo : DiagnosticInfoWithSymbols
21 instantiations of DiagnosticInfoWithSymbols
Microsoft.CodeAnalysis.CSharp (20)
Binder\Binder_QueryErrors.cs (6)
49new DiagnosticInfoWithSymbols(ErrorCode.ERR_BadDynamicQuery, Array.Empty<object>(), symbols), 55diagnostics.Add(new DiagnosticInfoWithSymbols( 63diagnostics.Add(new DiagnosticInfoWithSymbols( 71diagnostics.Add(new DiagnosticInfoWithSymbols( 207diagnostics.Add(new DiagnosticInfoWithSymbols( 239diagnostics.Add(new DiagnosticInfoWithSymbols(
Binder\Semantics\OverloadResolution\OverloadResolutionResult.cs (13)
610diagInfo = new DiagnosticInfoWithSymbols( 621diagnostics.Add(new DiagnosticInfoWithSymbols( 655diagnostics.Add(new DiagnosticInfoWithSymbols( 710diagnostics.Add(new DiagnosticInfoWithSymbols( 780diagnostics.Add(new DiagnosticInfoWithSymbols( 804diagnostics.Add(new DiagnosticInfoWithSymbols( 811diagnostics.Add(new DiagnosticInfoWithSymbols( 838diagnostics.Add(new DiagnosticInfoWithSymbols( 858diagnostics.Add(new DiagnosticInfoWithSymbols( 906diagnostics.Add(new DiagnosticInfoWithSymbols( 951diagnostics.Add(new DiagnosticInfoWithSymbols( 993diagnostics.Add(new DiagnosticInfoWithSymbols( 1558return new DiagnosticInfoWithSymbols(isExtension ? ErrorCode.ERR_AmbigExtension : ErrorCode.ERR_AmbigCall, [distinguisher.First, distinguisher.Second], symbols);
Errors\DiagnosticInfoWithSymbols.cs (1)
35return new DiagnosticInfoWithSymbols(this, severity);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Diagnostics\DiagnosticTest.cs (1)
116verifyWithSeverity(new DiagnosticInfoWithSymbols(ErrorCode.ERR_DuplicateTypeParameter, args,
2 references to DiagnosticInfoWithSymbols
Microsoft.CodeAnalysis.CSharp (2)
Binder\Semantics\OverloadResolution\OverloadResolutionResult.cs (1)
1552internal static DiagnosticInfoWithSymbols CreateAmbiguousCallDiagnosticInfo(CSharpCompilation compilation, Symbol first, Symbol second, ImmutableArray<Symbol> symbols, bool isExtension)
Errors\DiagnosticInfoWithSymbols.cs (1)
28protected DiagnosticInfoWithSymbols(DiagnosticInfoWithSymbols original, DiagnosticSeverity severity) : base(original, severity)