Exemplo n.º 1
0
 private object VisitCompoundOperator(BoundCompoundOperator node)
 {
     VisitExpression(node.Left);  // left is both read and written
     VisitExpression(node.Right);
     Assign(node.Left, node.Right);
     return(null);
 }
Exemplo n.º 2
0
 private object VisitCompoundOperator(BoundCompoundOperator node)
 {
     VisitExpression(node.Left);  // left is both read and written
     VisitExpression(node.Right);
     Assign(node.Left, node.Right);
     return null;
 }