Absyn
Class NegateExp

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

public class NegateExp
extends UnExp


Field Summary
 
Fields inherited from class Absyn.UnExp
exp
 
Fields inherited from class Absyn.Absyn
begin, end
 
Constructor Summary
NegateExp(Parse.Token begin, Parse.Token end, Exp e)
           
 
Method Summary
<R> R
accept(Visitor<R> v)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NegateExp

public NegateExp(Parse.Token begin,
                 Parse.Token end,
                 Exp e)
Method Detail

accept

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