Absyn
Class UnExp

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

public class UnExp
extends Exp

( "!" | "-" ) Exp


Field Summary
 Exp exp
           
 
Fields inherited from class Absyn.Exp
op, type
 
Constructor Summary
UnExp(Parse.Token o, Exp e)
           
 
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

exp

public Exp exp
Constructor Detail

UnExp

public UnExp(Parse.Token o,
             Exp e)
Method Detail

accept

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