2 overrides of ComputeValueForCompoundAssignment
Microsoft.CodeAnalysis.AnalyzerUtilities (2)
src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Analysis\PointsToAnalysis\PointsToAnalysis.PointsToDataFlowOperationVisitor.cs (1)
1251
public override PointsToAbstractValue
ComputeValueForCompoundAssignment
(ICompoundAssignmentOperation operation, PointsToAbstractValue targetValue, PointsToAbstractValue assignedValue, ITypeSymbol? targetType, ITypeSymbol? assignedValueType)
src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Analysis\ValueContentAnalysis\ValueContentAnalysis.ValueContentDataFlowOperationVisitor.cs (1)
231
public override ValueContentAbstractValue
ComputeValueForCompoundAssignment
(
2 references to ComputeValueForCompoundAssignment
Microsoft.CodeAnalysis.AnalyzerUtilities (2)
src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Analysis\PointsToAnalysis\PointsToAnalysis.PointsToDataFlowOperationVisitor.cs (1)
1259
return base.
ComputeValueForCompoundAssignment
(operation, targetValue, assignedValue, targetType, assignedValueType);
src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Framework\DataFlow\DataFlowOperationVisitor.cs (1)
2836
var value =
ComputeValueForCompoundAssignment
(operation, targetValue, assignedValue, operation.Target.Type, operation.Value.Type);