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