Uses of Class
org.norecess.citkit.environment.InvalidVariableException

Packages that use InvalidVariableException
org.norecess.citkit.environment This package provides classes to support an environment in an interpreter or compiler. 
 

Uses of InvalidVariableException in org.norecess.citkit.environment
 

Methods in org.norecess.citkit.environment that throw InvalidVariableException
 void IEnvironment.add(ISymbol variable, T value)
          Adds a new variable to the current environment.
 void Environment.add(ISymbol variable, T value)
           
 void NullEnvironment.add(ISymbol variable, T value)
           
 T IEnvironment.get(ISymbol variable)
          Returns the value associated with the specified variable.
 T Environment.get(ISymbol variable)
           
 T NullEnvironment.get(ISymbol variable)
           
 T IEnvironment.set(ISymbol variable, T value)
          Changes the value associated with the specified variable.
 T Environment.set(ISymbol variable, T value)
           
 T NullEnvironment.set(ISymbol variable, T value)
           
 HobbesTIR NullEnvironment.setInCurrentScope(ISymbol variable, T value)