source: trunk/yao/share/antlr-2.7.7/examples/java/pascal/ArrayType.java @ 1

Last change on this file since 1 was 1, checked in by lnalod, 15 years ago

Initial import of YAO sources

File size: 472 bytes
Line 
1
2import java.util.Vector;
3import java.io.*;
4
5/** Represents an array of form ARRAY [...] OF type.
6 *  If named like foo=array [1..5] of integer; then this Symbol
7 *  can be looked up in the symbol table.  Otherwise, this object
8 *  will be exclusively pointed to from a variable or field def.
9 */
10public class ArrayType extends TypeSpecifier implements Serializable {
11        protected Vector/*<TypeSpecifier>*/ indexTypes;
12        protected TypeSpecifier elementType;
13
14}
Note: See TracBrowser for help on using the repository browser.