ast
Class ArrayType

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

public class ArrayType
extends Type


Field Summary
 int line
           
 Expr lower
           
 Type type
           
 Expr upper
           
 
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

line

public int line

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)