1 write to _options
Microsoft.CodeAnalysis.Features (1)
AbstractRemoveUnusedParametersAndValuesDiagnosticAnalyzer.SymbolStartAnalyzer.BlockAnalyzer.cs (1)
62
_options
= options;
9 references to _options
Microsoft.CodeAnalysis.Features (9)
AbstractRemoveUnusedParametersAndValuesDiagnosticAnalyzer.SymbolStartAnalyzer.BlockAnalyzer.cs (9)
131
if (
_options
.UnusedValueExpressionStatementSeverity == ReportDiagnostic.Suppress)
181
var properties = s_propertiesMap[(
_options
.UnusedValueExpressionStatementPreference, isUnusedLocalAssignment: false, isRemovableAssignment: false)];
184
_options
.UnusedValueExpressionStatementSeverity,
421
var isComputingUnusedParams =
_options
.IsComputingUnusedParams(context.OwningSymbol);
422
if (
_options
.UnusedValueAssignmentSeverity == ReportDiagnostic.Suppress &&
538
_options
.UnusedValueAssignmentSeverity,
566
if (
_options
.UnusedValueAssignmentSeverity == ReportDiagnostic.Suppress ||
582
_options
.UnusedValueAssignmentPreference == UnusedValuePreference.UnusedLocalVariable)
589
properties = s_propertiesMap[(
_options
.UnusedValueAssignmentPreference, isUnusedLocalAssignment, isRemovableAssignment)];