Uses of Class
orc.ast.oil.arg.Var

Packages that use Var
orc.ast.oil Internal representation of OIL, the Orc Intermediate Language. 
orc.ast.oil.arg   
orc.ast.oil.xml JAXB implementation classes for the Orc Intermediate Language XML binding. 
orc.runtime.nodes Runtime execution DAG. 
 

Uses of Var in orc.ast.oil
 

Methods in orc.ast.oil that return types with arguments of type Var
 java.util.Set<Var> Def.freeVars()
           
 java.util.Set<Var> Expr.freeVars()
          Find the set of free variables in this expression.
 

Methods in orc.ast.oil with parameters of type Var
 void Walker.enter(Var arg)
           
 void Walker.leave(Var arg)
           
 void RenameVariables.leave(Var arg)
           
 java.lang.Void Walker.visit(Var arg)
           
 E Visitor.visit(Var arg)
           
 java.lang.Void UnguardedRecursionChecker.visit(Var arg)
           
 Node Compiler.visit(Var arg)
           
 

Uses of Var in orc.ast.oil.arg
 

Methods in orc.ast.oil.arg with parameters of type Var
 int Var.compareTo(Var o)
           
 

Uses of Var in orc.ast.oil.xml
 

Methods in orc.ast.oil.xml with parameters of type Var
 Expression Marshaller.visit(Var arg)
           
 

Uses of Var in orc.runtime.nodes
 

Fields in orc.runtime.nodes with type parameters of type Var
 java.util.Set<Var> Def.free
           
 java.util.Set<Var> Defs.free
          Variables defined outside this node which appear in the bodies of the defs.
 

Constructor parameters in orc.runtime.nodes with type arguments of type Var
Def(int arity, Node body, java.util.Set<Var> free, SourceLocation location)
           
Defs(java.util.List<Def> defs, Node next, java.util.Set<Var> free)