Exemplo n.º 1
0
 public BoolNode(Token token)
     : base(token)
 {
 }
Exemplo n.º 2
0
 public StatementNode(Token token)
     : base(token)
 {
 }
Exemplo n.º 3
0
 public EqualsNode(Token token, ExpressionNode inLeft, ExpressionNode inRight)
     : base(token)
 {
     SetLeft(inLeft);
     SetRight(inRight);
 }