1 write to _analyzer
Microsoft.CodeAnalysis (1)
DiagnosticAnalyzer\AnalyzerDriver.GroupedAnalyzerActionsForAnalyzer.cs (1)
32
_analyzer
= analyzer;
11 references to _analyzer
Microsoft.CodeAnalysis (11)
DiagnosticAnalyzer\AnalyzerDriver.GroupedAnalyzerActionsForAnalyzer.cs (11)
54
AddFilteredActions(actions,
_analyzer
, _analyzerActionsNeedFiltering, builder);
86
AnalyzerActions.AddSyntaxNodeActions(
_analyzer
, nodeActions);
90
VerifyActions(nodeActions,
_analyzer
);
107
VerifyActions(operationActions,
_analyzer
);
124
VerifyActions(codeBlockActions,
_analyzer
);
133
=> GetExecutableCodeActions(ref _lazyCodeBlockEndActions, AnalyzerActions.CodeBlockEndActions,
_analyzer
, _analyzerActionsNeedFiltering);
136
=> GetExecutableCodeActions(ref _lazyCodeBlockActions, AnalyzerActions.CodeBlockActions,
_analyzer
, _analyzerActionsNeedFiltering);
139
=> GetExecutableCodeActions(ref _lazyOperationBlockStartActions, AnalyzerActions.OperationBlockStartActions,
_analyzer
, _analyzerActionsNeedFiltering);
142
=> GetExecutableCodeActions(ref _lazyOperationBlockEndActions, AnalyzerActions.OperationBlockEndActions,
_analyzer
, _analyzerActionsNeedFiltering);
145
=> GetExecutableCodeActions(ref _lazyOperationBlockActions, AnalyzerActions.OperationBlockActions,
_analyzer
, _analyzerActionsNeedFiltering);
179
Analyzer =
_analyzer
,