1 write to Diagnostics
Microsoft.CodeAnalysis.CSharp (1)
FlowAnalysis\AbstractFlowPass.cs (1)
212
this.
Diagnostics
= DiagnosticBag.GetInstance();
49 references to Diagnostics
Microsoft.CodeAnalysis.CSharp (49)
FlowAnalysis\AbstractFlowPass.cs (3)
446
this.
Diagnostics
.Clear();
456
this.
Diagnostics
.Free();
898
Diagnostics
.Add(ErrorCode.ERR_InternalError, node.Syntax.Location);
FlowAnalysis\ControlFlowPass.cs (10)
135
this.
Diagnostics
.Clear(); // clear reported diagnostics
143
Diagnostics
.Add(ErrorCode.WRN_UnreferencedLabel, label.GetFirstLocation());
197
diagnostics.AddRange(this.
Diagnostics
);
220
Diagnostics
.Add(ErrorCode.ERR_LabelNotFound, loc, ((BoundGotoStatement)pending.Branch).Label.Name);
228
Diagnostics
.Add(ErrorCode.ERR_BadDelegateLeave, loc);
269
Diagnostics
.Add(ErrorCode.WRN_UnreachableCode, new SourceLocation(firstToken));
311
Diagnostics
.Add(ErrorCode.ERR_BadFinallyLeave, location);
351
Diagnostics
.Add(ErrorCode.ERR_GoToForwardJumpOverUsingVar, sourceLocation);
363
Diagnostics
.Add(ErrorCode.ERR_GoToBackwardJumpOverUsingVar, sourceLocation);
380
Diagnostics
.Add(isLastSection ? ErrorCode.ERR_SwitchFallOut : ErrorCode.ERR_SwitchFallThrough,
FlowAnalysis\DefiniteAssignment.cs (21)
331
this.
Diagnostics
.Clear();
412
Diagnostics
.Add(ErrorCode.WRN_AsyncLacksAwaits, diagnosticLocation);
459
if (
Diagnostics
!= null && this.State.Reachable)
489
Diagnostics
.Add(
496
Diagnostics
.Add(
514
Diagnostics
.Add(ErrorCode.ERR_ParamUnassigned, location, parameter.Name);
533
Diagnostics
.Add(ErrorCode.ERR_ParamUnassigned, location, parameter.Name);
697
diagnostics.AddRange(this.
Diagnostics
);
1242
Diagnostics
.Add(ErrorCode.ERR_UseDefViolationOut, node.Location, symbolName);
1247
Diagnostics
.Add(ErrorCode.ERR_UseDefViolation, node.Location, symbolName);
1295
Diagnostics
.Add(ErrorCode.WRN_UseDefViolationThisSupportedVersion, node.Location);
1299
Diagnostics
.Add(
1313
Diagnostics
.Add(hasAssociatedProperty ? ErrorCode.ERR_UseDefViolationProperty : ErrorCode.ERR_UseDefViolationField, node.Location, symbolName);
1323
Diagnostics
.Add(hasAssociatedProperty ? ErrorCode.ERR_UseDefViolationProperty : ErrorCode.ERR_UseDefViolationField, node.Location, symbolName);
1339
Diagnostics
.Add(
1347
Diagnostics
.Add(
1354
Diagnostics
.Add(
1950
Diagnostics
.Add((primaryCtor.ContainingType is { IsRecord: true } or { IsRecordStruct: true }) ?
2327
Diagnostics
.Add(assigned && _writtenVariables.Contains(symbol) ? ErrorCode.WRN_UnreferencedVarAssg : ErrorCode.WRN_UnreferencedVar, symbol.GetFirstLocationOrNone(), symbol.Name);
2346
Diagnostics
.Add(ErrorCode.WRN_UnreferencedLocalFunction, symbol.GetFirstLocationOrNone(), symbol.Name);
2375
Diagnostics
.Add(ErrorCode.ERR_FixedLocalInLambda, new SourceLocation(node.Syntax), localSymbol);
FlowAnalysis\NullableWalker.cs (15)
584
this.
Diagnostics
.Clear();
790
Diagnostics
.Add(info, exitLocation ?? symbol.GetFirstLocationOrNone());
994
Diagnostics
.Add(ErrorCode.WRN_MemberNotNull, syntax.GetLocation(), member.Name);
1063
Diagnostics
.Add(ErrorCode.WRN_MemberNotNullWhen, syntaxOpt?.GetLocation() ?? methodMainNode.Syntax.GetLastToken().GetLocation(), member.Name, sense ? "true" : "false");
1222
Diagnostics
.Add(ErrorCode.WRN_ParameterDisallowsNull, location, parameter.Name);
1249
Diagnostics
.Add(ErrorCode.WRN_ParameterConditionallyDisallowsNull, syntax.Location, parameter.Name, sense ? "true" : "false");
1308
Diagnostics
.Add(ErrorCode.WRN_ParameterNotNullIfNotNull, location, outputParam.Name, inputParam.Name);
1313
Diagnostics
.Add(ErrorCode.WRN_ReturnNotNullIfNotNull, location, inputParam.Name);
1789
diagnostics?.AddRange(walker.
Diagnostics
);
2582
Diagnostics
.Add(errorCode, location, arguments);
8023
Diagnostics
.Add(pair.UseSiteInfo.DiagnosticInfo, syntax.Location);
8446
Diagnostics
.AddRange(diagnostics.DiagnosticBag);
8648
Diagnostics
.AddRange(diagnostics.DiagnosticBag);
8704
Diagnostics
.AddRange(diagnostics.DiagnosticBag);
8719
Diagnostics
.AddRange(diagnostics.DiagnosticBag);