scheme.interp
Class Continuation

java.lang.Object
  |
  +--scheme.interp.SchemeValue
        |
        +--scheme.interp.Continuation

public abstract class Continuation
extends SchemeValue


Constructor Summary
Continuation()
           
 
Method Summary
 void apply(List argVs, Eval_Exp eval_exp)
           
abstract  void invoke(SchemeValue v)
           
 
Methods inherited from class scheme.interp.SchemeValue
getCar, getCdr, getInt, isTrue, setCar, setCdr
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

Continuation

public Continuation()
Method Detail

invoke

public abstract void invoke(SchemeValue v)
                     throws VisitE

apply

public void apply(List argVs,
                  Eval_Exp eval_exp)
           throws VisitE
Overrides:
apply in class SchemeValue