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)
51
=> GetFilteredActions(actions,
_analyzer
, _analyzerActionsNeedFiltering);
74
AnalyzerActions.GetSyntaxNodeActions<TLanguageKindEnum>(
_analyzer
) :
76
VerifyActions(nodeActions,
_analyzer
);
94
VerifyActions(operationActions,
_analyzer
);
112
VerifyActions(codeBlockActions,
_analyzer
);
121
=> GetExecutableCodeActions(ref _lazyCodeBlockEndActions, AnalyzerActions.CodeBlockEndActions,
_analyzer
, _analyzerActionsNeedFiltering);
124
=> GetExecutableCodeActions(ref _lazyCodeBlockActions, AnalyzerActions.CodeBlockActions,
_analyzer
, _analyzerActionsNeedFiltering);
127
=> GetExecutableCodeActions(ref _lazyOperationBlockStartActions, AnalyzerActions.OperationBlockStartActions,
_analyzer
, _analyzerActionsNeedFiltering);
130
=> GetExecutableCodeActions(ref _lazyOperationBlockEndActions, AnalyzerActions.OperationBlockEndActions,
_analyzer
, _analyzerActionsNeedFiltering);
133
=> GetExecutableCodeActions(ref _lazyOperationBlockActions, AnalyzerActions.OperationBlockActions,
_analyzer
, _analyzerActionsNeedFiltering);
166
Analyzer =
_analyzer
,