3 writes to _codeBlockStartActions
Microsoft.CodeAnalysis (3)
DiagnosticAnalyzer\DiagnosticStartAnalysisScope.cs (3)
704
_codeBlockStartActions
= ImmutableArray<AnalyzerAction>.Empty;
746
_codeBlockStartActions
= codeBlockStartActions;
956
_codeBlockStartActions
= _codeBlockStartActions.Add(action);
6 references to _codeBlockStartActions
Microsoft.CodeAnalysis (6)
DiagnosticAnalyzer\DiagnosticStartAnalysisScope.cs (6)
789
public readonly int CodeBlockStartActionsCount { get { return
_codeBlockStartActions
.Length; } }
853
return
_codeBlockStartActions
.OfType<CodeBlockStartAnalyzerAction<TLanguageKindEnum>>().ToImmutableArray();
956
_codeBlockStartActions =
_codeBlockStartActions
.Add(action);
1028
codeBlockStartActions:
_codeBlockStartActions
.AddRange(otherActions.
_codeBlockStartActions
),
1120
AppendActions(ref _codeBlockStartActionsImmutable, ref _codeBlockStartActionsBuilder, otherActions.
_codeBlockStartActions
);