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