1 write to Diagnostics
Microsoft.CodeAnalysis.CSharp (1)
FlowAnalysis\AbstractFlowPass.cs (1)
211
this.
Diagnostics
= DiagnosticBag.GetInstance();
49 references to Diagnostics
Microsoft.CodeAnalysis.CSharp (49)
FlowAnalysis\AbstractFlowPass.cs (3)
445
this.
Diagnostics
.Clear();
455
this.
Diagnostics
.Free();
897
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();
420
Diagnostics
.Add(ErrorCode.WRN_AsyncLacksAwaits, diagnosticLocation);
467
if (
Diagnostics
!= null && this.State.Reachable)
497
Diagnostics
.Add(
504
Diagnostics
.Add(
522
Diagnostics
.Add(ErrorCode.ERR_ParamUnassigned, location, parameter.Name);
541
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(
1962
Diagnostics
.Add((primaryCtor.ContainingType is { IsRecord: true } or { IsRecordStruct: true }) ?
2339
Diagnostics
.Add(assigned && _writtenVariables.Contains(symbol) ? ErrorCode.WRN_UnreferencedVarAssg : ErrorCode.WRN_UnreferencedVar, symbol.GetFirstLocationOrNone(), symbol.Name);
2358
Diagnostics
.Add(ErrorCode.WRN_UnreferencedLocalFunction, symbol.GetFirstLocationOrNone(), symbol.Name);
2387
Diagnostics
.Add(ErrorCode.ERR_FixedLocalInLambda, new SourceLocation(node.Syntax), localSymbol);
FlowAnalysis\NullableWalker.cs (15)
593
this.
Diagnostics
.Clear();
804
Diagnostics
.Add(info, exitLocation ?? symbol.GetFirstLocationOrNone());
1068
Diagnostics
.Add(ErrorCode.WRN_MemberNotNull, syntax.GetLocation(), member.Name);
1137
Diagnostics
.Add(ErrorCode.WRN_MemberNotNullWhen, syntaxOpt?.GetLocation() ?? methodMainNode.Syntax.GetLastToken().GetLocation(), member.Name, sense ? "true" : "false");
1309
Diagnostics
.Add(ErrorCode.WRN_ParameterDisallowsNull, location, parameter.Name);
1336
Diagnostics
.Add(ErrorCode.WRN_ParameterConditionallyDisallowsNull, syntax.Location, parameter.Name, sense ? "true" : "false");
1395
Diagnostics
.Add(ErrorCode.WRN_ParameterNotNullIfNotNull, location, outputParam.Name, inputParam.Name);
1400
Diagnostics
.Add(ErrorCode.WRN_ReturnNotNullIfNotNull, location, inputParam.Name);
1887
diagnostics?.AddRange(walker.
Diagnostics
);
2680
Diagnostics
.Add(errorCode, location, arguments);
8317
Diagnostics
.Add(pair.UseSiteInfo.DiagnosticInfo, syntax.Location);
8742
Diagnostics
.AddRange(diagnostics.DiagnosticBag);
8944
Diagnostics
.AddRange(diagnostics.DiagnosticBag);
9000
Diagnostics
.AddRange(diagnostics.DiagnosticBag);
9015
Diagnostics
.AddRange(diagnostics.DiagnosticBag);