scheme.absyn
Class LetrecE

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

public class LetrecE
extends Exp


Field Summary
private  Exp body
           
private  List decls
           
 
Constructor Summary
LetrecE(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

LetrecE

public LetrecE(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