ast
Class ArrayType

java.lang.Object
  |
  +--ast.Type
        |
        +--ast.ArrayType

public class ArrayType
extends Type


Field Summary
 Expr lower
           
 Type type
           
 Expr upper
           
 
Fields inherited from class ast.Type
line
 
Constructor Summary
ArrayType(int line, Expr lower, Expr upper, Type type)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

lower

public Expr lower

upper

public Expr upper

type

public Type type
Constructor Detail

ArrayType

public ArrayType(int line,
                 Expr lower,
                 Expr upper,
                 Type type)