Uses of Class
sisc.interpreter.CallFrame

Packages that use CallFrame
sisc.interpreter   
sisc.util   
 

Uses of CallFrame in sisc.interpreter
 

Fields in sisc.interpreter declared as CallFrame
 CallFrame ApplyParentFrame.c
           
 CallFrame Interpreter.fk
           
 CallFrame CallFrame.fk
           
protected  CallFrame Interpreter.frameFreeList
           
 CallFrame ContinuationException.k
           
 CallFrame CallFrame.parent
           
 

Methods in sisc.interpreter that return CallFrame
 CallFrame CallFrame.capture(Interpreter r)
           
 

Methods in sisc.interpreter with parameters of type CallFrame
 void CallFrame.init(Expression n, Value[] v, boolean vk, Value[] l, Value[] e, SymbolicEnvironment t, CallFrame f, CallFrame p, StackTracer tr)
           
 void Interpreter.pop(CallFrame c)
           
 void Interpreter.returnFrame(CallFrame f)
           
 

Constructors in sisc.interpreter with parameters of type CallFrame
ApplyParentFrame(CallFrame cf)
           
CallFrame(Expression n, Value[] v, boolean vk, Value[] l, Value[] e, SymbolicEnvironment t, CallFrame f, CallFrame p, StackTracer tr)
           
ContinuationException(CallFrame k)
           
 

Uses of CallFrame in sisc.util
 

Methods in sisc.util that return CallFrame
static CallFrame Util.cont(Value o)