Uses of Class
ix.util.lisp.Interpreter.VarRef

Packages that use Interpreter.VarRef
ix.util.lisp List-processing utilities. 
 

Uses of Interpreter.VarRef in ix.util.lisp
 

Subclasses of Interpreter.VarRef in ix.util.lisp
static class Interpreter.Assignment
          An assignment to a variable.
 

Methods in ix.util.lisp with parameters of type Interpreter.VarRef
 java.lang.Object Interpreter.Env.assign(Interpreter.VarRef ref, java.lang.Object val)
          Changes the value bound to the variable and then returns the new value.
 java.lang.Object Interpreter.GlobalEnv.assign(Interpreter.VarRef ref, java.lang.Object val)
           
 java.lang.Object Interpreter.LexicalEnv.assign(Interpreter.VarRef ref, java.lang.Object val)
           
protected  void Interpreter.LexicalEnv.findOffsets(Interpreter.VarRef ref)
           
 java.lang.Object Interpreter.Env.lookup(Interpreter.VarRef ref)
          Returns the value bound to the variable by this environment.
 java.lang.Object Interpreter.GlobalEnv.lookup(Interpreter.VarRef ref)
           
 java.lang.Object Interpreter.LexicalEnv.lookup(Interpreter.VarRef ref)