Uses of Class
sisc.env.DynamicEnvironment

Packages that use DynamicEnvironment
sisc SISC: The Second Interpreter of Scheme Code 
sisc.data   
sisc.env   
sisc.interpreter   
sisc.modules.s2j   
sisc.util   
 

Uses of DynamicEnvironment in sisc
 

Constructors in sisc with parameters of type DynamicEnvironment
REPL.SchemeSocketThread(DynamicEnvironment dynenv, Procedure thunk, java.net.Socket s)
           
REPL(DynamicEnvironment dynenv, Procedure repl)
          Construct a new REPL which will invoke the given Scheme procedure as the REPL in the provided dynamic environment.
 

Uses of DynamicEnvironment in sisc.data
 

Fields in sisc.data declared as DynamicEnvironment
 DynamicEnvironment SchemeThread.env
           
 

Constructors in sisc.data with parameters of type DynamicEnvironment
SchemeThread(DynamicEnvironment dynenv, Procedure thunk)
           
 

Uses of DynamicEnvironment in sisc.env
 

Methods in sisc.env that return DynamicEnvironment
 DynamicEnvironment DynamicEnvironment.copy()
           
 

Uses of DynamicEnvironment in sisc.interpreter
 

Fields in sisc.interpreter declared as DynamicEnvironment
 DynamicEnvironment Interpreter.dynenv
           
 

Methods in sisc.interpreter with parameters of type DynamicEnvironment
static Interpreter Context.enter(DynamicEnvironment dynenv)
          Returns an Interpreter bound to the given DynamicEnvironment.
static java.lang.Object Context.execute(DynamicEnvironment dynenv, SchemeCaller caller)
          Obtains an Interpreter bound to the given DynamicEnvironment and invokes caller.execute(Interpreter) with that Interper.
 void ThreadContext.setHostThread(DynamicEnvironment dynenv, java.lang.Thread thread)
           
 

Constructors in sisc.interpreter with parameters of type DynamicEnvironment
Interpreter(ThreadContext tctx, DynamicEnvironment dynenv)
           
 

Uses of DynamicEnvironment in sisc.modules.s2j
 

Fields in sisc.modules.s2j declared as DynamicEnvironment
protected  DynamicEnvironment SchemeInvocation.dynenv
           
 

Constructors in sisc.modules.s2j with parameters of type DynamicEnvironment
SchemeInvocation(DynamicEnvironment dynenv, Procedure proc)
           
 

Uses of DynamicEnvironment in sisc.util
 

Methods in sisc.util with parameters of type DynamicEnvironment
static void SignalHook.addHandler(java.lang.String signame, Procedure proc, DynamicEnvironment env)
           
static void SignalHook.removeHandler(java.lang.String signame, Procedure proc, DynamicEnvironment env)
           
 

Constructors in sisc.util with parameters of type DynamicEnvironment
SignalHook.SignalHandler(Procedure proc, DynamicEnvironment env)