1 write to Diagnostics
Microsoft.CodeAnalysis.CSharp (1)
Binder\MethodGroupResolution.cs (1)
58this.Diagnostics = diagnostics;
9 references to Diagnostics
Microsoft.CodeAnalysis.CSharp (9)
Binder\Binder.ValueChecks.cs (1)
620if (!expr.HasAnyErrors) diagnostics.AddRange(resolution.Diagnostics); // Suppress cascading.
Binder\Binder_Expressions.cs (2)
7898diagnostics.AddRange(resolution.Diagnostics); 10276diagnostics.AddRange(methodResolution.Diagnostics); // Could still have use site warnings.
Binder\Binder_Invocation.cs (2)
720if (!methodGroup.HasAnyErrors) diagnostics.AddRange(resolution.Diagnostics); // Suppress cascading. 2256diagnostics.AddRange(resolution.Diagnostics);
Binder\Binder_Query.cs (1)
962diagnostics.AddRange(resolution.Diagnostics);
Binder\ForEachLoopBinder.cs (1)
1512diagnostics.AddRange(methodGroupResolutionResult.Diagnostics);
Binder\MethodGroupResolution.cs (1)
68get { return this.Diagnostics.Diagnostics.HasAnyErrors(); }
Binder\Semantics\Conversions\Conversions.cs (1)
304diagnostics.AddRange(resolution.Diagnostics);