public void Visit(BoundNode boundNode)
 {
     throw new NotImplementedException();
 }
示例#2
0
 public void Visit(BoundNode boundNode)
 {
     boundNode.varNode.Accept(this);
 }
示例#3
0
 public void Visit(BoundNode boundNode)
 {
     PrintLine("<bound>");
     indent();
     boundNode.varNode.Accept(this);
     unindent();
     PrintLine("</bound>");
 }
示例#4
0
 public ConstraintNode(ExpressionNode expressionNode, AssignmentNode operatorNode, BoundNode boundNode)
 {
     this.en = expressionNode;
     this.on = operatorNode;
     this.bn = boundNode;
 }