Uses of Class
slogo.expression.Variable

Packages that use Variable
slogo.expression   
slogo.instruction   
 

Uses of Variable in slogo.expression
 

Fields in slogo.expression with type parameters of type Variable
private static java.util.Map<java.lang.String,Variable> VariableFactory.varnameToVariable
           
 

Methods in slogo.expression that return Variable
static Variable VariableFactory.getVariable(IdentifierToken t)
           
 

Methods in slogo.expression with parameters of type Variable
 int Variable.compareTo(Variable v)
           
 

Uses of Variable in slogo.instruction
 

Fields in slogo.instruction declared as Variable
protected  Variable Assignment.myVariable
           
 

Constructors in slogo.instruction with parameters of type Variable
Assignment(Variable v, GrammarElement e)
          Construct an Assignment instruction from a variable and an expression, e.g., X = expression.