Absyn
Class BinExp

java.lang.Object
  extended by Absyn.Absyn
      extended by Absyn.Exp
          extended by Absyn.BinExp

public class BinExp
extends Exp

Exp ( "&&" | "||" | "==" | "!=" | "<" | ">" | "<=" | ">=" | "+" | "-" | "*" | "/" ) Exp


Field Summary
 Exp left
           
 Exp right
           
 
Fields inherited from class Absyn.Exp
op, type
 
Constructor Summary
BinExp(Parse.Token o, Exp l, Exp r)
           
 
Method Summary
<D,R> R
accept(Visitor<D,R> v, D d)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

left

public Exp left

right

public Exp right
Constructor Detail

BinExp

public BinExp(Parse.Token o,
              Exp l,
              Exp r)
Method Detail

accept

public <D,R> R accept(Visitor<D,R> v,
                      D d)
Specified by:
accept in class Absyn