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

Packages that use IFieldTIR
org.norecess.citkit.tir.declarations   
org.norecess.citkit.tir.lvalues   
org.norecess.citkit.tir.types   
org.norecess.citkit.visitors   
 

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

Methods in org.norecess.citkit.tir.declarations that return types with arguments of type IFieldTIR
 java.util.List<IFieldTIR> FunctionDTIR.getParameters()
          Returns the parameters of the function.
 java.util.List<IFieldTIR> IFunctionDTIR.getParameters()
          Returns the parameters of the function.
 

Constructor parameters in org.norecess.citkit.tir.declarations with type arguments of type IFieldTIR
FunctionDTIR(IPosition position, java.lang.String name, java.util.List<IFieldTIR> parameters, ExpressionTIR body)
          Constructs a procedure declaration.
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, ExpressionTIR body)
          Basic constructor for a procedure.
FunctionDTIR(java.lang.String name, java.util.List<IFieldTIR> parameters, INameTTIR result, ExpressionTIR body)
          Basic constructor for a function.
 

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

Classes in org.norecess.citkit.tir.lvalues that implement IFieldTIR
 class FieldTIR
          The AST for a field.
 

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

Methods in org.norecess.citkit.tir.types that return IFieldTIR
 IFieldTIR RecordTTIR.getField(int index)
           
 IFieldTIR IRecordTTIR.getField(int index)
           
 

Methods in org.norecess.citkit.tir.types that return types with arguments of type IFieldTIR
 java.util.List<IFieldTIR> RecordTTIR.getFields()
          Returns the list of fields in the record.
 java.util.List<IFieldTIR> IRecordTTIR.getFields()
          Returns the list of fields in the record.
 java.util.Iterator<IFieldTIR> RecordTTIR.iterator()
           
 

Constructor parameters in org.norecess.citkit.tir.types with type arguments of type IFieldTIR
RecordTTIR(IPosition position, java.util.List<IFieldTIR> fields)
          Constructs a record type.
RecordTTIR(java.util.List<IFieldTIR> fields)
          Basic constructor.
 

Uses of IFieldTIR in org.norecess.citkit.visitors
 

Methods in org.norecess.citkit.visitors with parameters of type IFieldTIR
 T TypeTIRVisitor.visitField(IFieldTIR field)