piglet.syntaxtree
Class BinOp

java.lang.Object
  extended by piglet.syntaxtree.BinOp
All Implemented Interfaces:
java.io.Serializable, Node

public class BinOp
extends java.lang.Object
implements Node

Grammar production:

 operator -> Operator()
 exp -> Exp()
 exp1 -> Exp()
 

See Also:
Serialized Form

Field Summary
 Exp exp
           
 Exp exp1
           
 Operator operator
           
 
Constructor Summary
BinOp(Operator n0, Exp n1, Exp n2)
           
 
Method Summary
<R> R
accept(GJNoArguVisitor<R> v)
           
<R,A> R
accept(GJVisitor<R,A> v, A argu)
           
<A> void
accept(GJVoidVisitor<A> v, A argu)
           
 void accept(Visitor v)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

operator

public Operator operator

exp

public Exp exp

exp1

public Exp exp1
Constructor Detail

BinOp

public BinOp(Operator n0,
             Exp n1,
             Exp n2)
Method Detail

accept

public void accept(Visitor v)
Specified by:
accept in interface Node

accept

public <R,A> R accept(GJVisitor<R,A> v,
                      A argu)
Specified by:
accept in interface Node

accept

public <R> R accept(GJNoArguVisitor<R> v)
Specified by:
accept in interface Node

accept

public <A> void accept(GJVoidVisitor<A> v,
                       A argu)
Specified by:
accept in interface Node