5 references to TransformCompoundAssignmentLHS
Microsoft.CodeAnalysis.CSharp (5)
Lowering\LocalRewriter\LocalRewriter_CompoundAssignmentOperator.cs (1)
95BoundExpression transformedLHS = TransformCompoundAssignmentLHS(node.Left, stores, temps, isDynamic);
Lowering\LocalRewriter\LocalRewriter_DeconstructionAssignmentOperator.cs (1)
463var temp = this.TransformCompoundAssignmentLHS(variable,
Lowering\LocalRewriter\LocalRewriter_NullCoalescingAssignmentOperator.cs (1)
23BoundExpression transformedLHS = TransformCompoundAssignmentLHS(node.LeftOperand, stores, temps, node.LeftOperand.HasDynamicType());
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (2)
466BoundExpression transformedLHS = TransformCompoundAssignmentLHS(left, tempInitializers, tempSymbols, isDynamicAssignment: false); 585BoundExpression transformedLHS = TransformCompoundAssignmentLHS(node.Operand, tempInitializers, tempSymbols, isDynamic);