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)
605diagInfo = new DiagnosticInfoWithSymbols( 616diagnostics.Add(new DiagnosticInfoWithSymbols( 650diagnostics.Add(new DiagnosticInfoWithSymbols( 705diagnostics.Add(new DiagnosticInfoWithSymbols( 775diagnostics.Add(new DiagnosticInfoWithSymbols( 799diagnostics.Add(new DiagnosticInfoWithSymbols( 806diagnostics.Add(new DiagnosticInfoWithSymbols( 833diagnostics.Add(new DiagnosticInfoWithSymbols( 853diagnostics.Add(new DiagnosticInfoWithSymbols( 901diagnostics.Add(new DiagnosticInfoWithSymbols( 946diagnostics.Add(new DiagnosticInfoWithSymbols( 984diagnostics.Add(new DiagnosticInfoWithSymbols( 1549return 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)
1543internal 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)