compound-lhs = compound-rhs
상속: AssignmentExpression
예제 #1
0
 internal protected virtual void Walk(ParallelAssignmentExpression /*!*/ node)
 {
     if (Enter(node))
     {
         node.Left.Walk(this);
     }
     Exit(node);
 }
예제 #2
0
 public virtual void Exit(ParallelAssignmentExpression/*!*/ node) { }
예제 #3
0
 public virtual void Exit(ParallelAssignmentExpression /*!*/ node)
 {
 }
예제 #4
0
 public virtual bool Enter(ParallelAssignmentExpression/*!*/ node) { return true; }
예제 #5
0
 public virtual bool Enter(ParallelAssignmentExpression /*!*/ node)
 {
     return(true);
 }