scheme.absyn
Class AppE

java.lang.Object
  |
  +--scheme.absyn.Exp
        |
        +--scheme.absyn.AppE

public class AppE
extends Exp


Field Summary
private  ExpList args
           
private  Exp fun
           
 
Constructor Summary
AppE(Exp fun, ExpList args)
           
 
Method Summary
 void accept(ExpVisitor v)
           
 ExpList getArgs()
           
 Exp getFun()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

fun

private Exp fun

args

private ExpList args
Constructor Detail

AppE

public AppE(Exp fun,
            ExpList args)
Method Detail

getFun

public Exp getFun()

getArgs

public ExpList getArgs()

accept

public void accept(ExpVisitor v)
            throws VisitE
Overrides:
accept in class Exp