scheme.absyn
Class LetE

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

public class LetE
extends Exp


Field Summary
private  Exp body
           
private  List decls
           
 
Constructor Summary
LetE(List decls, Exp body)
           
 
Method Summary
 void accept(ExpVisitor v)
           
 Exp getBody()
           
 List getDecls()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

decls

private List decls

body

private Exp body
Constructor Detail

LetE

public LetE(List decls,
            Exp body)
Method Detail

getDecls

public List getDecls()

getBody

public Exp getBody()

accept

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