scheme.absyn
Class LambdaE

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

public class LambdaE
extends Exp


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

Field Detail

ids

private List ids

body

private Exp body
Constructor Detail

LambdaE

public LambdaE(List ids,
               Exp body)
Method Detail

getIds

public List getIds()

getBody

public Exp getBody()

accept

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