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

Packages that use Var
orc.ast.oil Internal representation of OIL, the Orc Intermediate Language. 
orc.orchard.oil 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> 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)
           
 java.lang.Object Walker.visit(Var arg)
           
 E Visitor.visit(Var arg)
           
 

Uses of Var in orc.orchard.oil
 

Methods in orc.orchard.oil 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> Defs.freeset
           
 

Constructor parameters in orc.runtime.nodes with type arguments of type Var
Defs(java.util.List<Def> defs, Node next, java.util.Set<Var> freeset)