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