Uses of Interface
org.norecess.citkit.tir.lvalues.ISimpleLValueTIR

Packages that use ISimpleLValueTIR
org.norecess.citkit.tir.expressions This package provides the classes for the expressions in a language. 
org.norecess.citkit.tir.lvalues   
org.norecess.citkit.visitors   
 

Uses of ISimpleLValueTIR in org.norecess.citkit.tir.expressions
 

Methods in org.norecess.citkit.tir.expressions that return ISimpleLValueTIR
 ISimpleLValueTIR ForETIR.getIdentifier()
          Returns the variable declaration of the for loop.
 ISimpleLValueTIR IForETIR.getIdentifier()
          Returns the variable declaration of the for loop.
 

Constructors in org.norecess.citkit.tir.expressions with parameters of type ISimpleLValueTIR
ForETIR(IPosition position, ISimpleLValueTIR identifier, ExpressionTIR low, ExpressionTIR high, ExpressionTIR body)
          Constructs a for loop.
ForETIR(ISimpleLValueTIR identifier, ExpressionTIR low, ExpressionTIR high, ExpressionTIR body)
          Basic constructor.
 

Uses of ISimpleLValueTIR in org.norecess.citkit.tir.lvalues
 

Classes in org.norecess.citkit.tir.lvalues that implement ISimpleLValueTIR
 class SimpleLValueTIR
          The TIR for a simple variable reference.
 

Uses of ISimpleLValueTIR in org.norecess.citkit.visitors
 

Methods in org.norecess.citkit.visitors with parameters of type ISimpleLValueTIR
 T LValueTIRVisitor.visitSimpleLValue(ISimpleLValueTIR simpleVariable)