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