4 references to TransformCompoundAssignmentLHS
Microsoft.CodeAnalysis.CSharp (4)
Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs (1)
37
BoundExpression transformedLHS =
TransformCompoundAssignmentLHS
(node.Left, isRegularCompoundAssignment: true, stores, temps, isDynamic);
Lowering\LocalRewriter\LocalRewriter_DeconstructionAssignmentOperator.cs (1)
463
var temp = this.
TransformCompoundAssignmentLHS
(variable, isRegularCompoundAssignment: false,
Lowering\LocalRewriter\LocalRewriter_NullCoalescingAssignmentOperator.cs (1)
23
BoundExpression transformedLHS =
TransformCompoundAssignmentLHS
(node.LeftOperand, isRegularCompoundAssignment: false, stores, temps, node.LeftOperand.HasDynamicType());
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (1)
433
BoundExpression transformedLHS =
TransformCompoundAssignmentLHS
(node.Operand, isRegularCompoundAssignment: true, tempInitializers, tempSymbols, isDynamic);