Uses of Interface
org.norecess.citkit.tir.types.INameTTIR

Packages that use INameTTIR
org.norecess.citkit.tir.declarations   
org.norecess.citkit.tir.types   
org.norecess.citkit.visitors   
 

Uses of INameTTIR in org.norecess.citkit.tir.declarations
 

Methods in org.norecess.citkit.tir.declarations that return INameTTIR
 INameTTIR FunctionDTIR.getResult()
          Returns the type of the returned value.
 INameTTIR IFunctionDTIR.getResult()
          Returns the type of the returned value.
 INameTTIR VariableDTIR.getType()
          Returns the type of the variable.
 INameTTIR IVariableDTIR.getType()
          Returns the type of the variable.
 

Constructors in org.norecess.citkit.tir.declarations with parameters of type INameTTIR
FunctionDTIR(IPosition position, java.lang.String name, java.util.List<IFieldTIR> parameters, INameTTIR result, ExpressionTIR body)
          Constructs a function declaration.
FunctionDTIR(java.lang.String name, java.util.List<IFieldTIR> parameters, INameTTIR result, ExpressionTIR body)
          Basic constructor for a function.
VariableDTIR(IPosition position, ISymbol symbol, INameTTIR type, ExpressionTIR initialization)
          Constructs a variable declaration.
VariableDTIR(ISymbol symbol, INameTTIR type, ExpressionTIR initialization)
          Basic constructor.
 

Uses of INameTTIR in org.norecess.citkit.tir.types
 

Classes in org.norecess.citkit.tir.types that implement INameTTIR
 class NameTTIR
          The AST for a named type.
 

Uses of INameTTIR in org.norecess.citkit.visitors
 

Methods in org.norecess.citkit.visitors with parameters of type INameTTIR
 T TypeTIRVisitor.visitNameType(INameTTIR nameType)