All Downloads are FREE. Search and download functionalities are using the official Maven repository.

persistence.antlr.collections.impl.ASTArray Maven / Gradle / Ivy

There is a newer version: 2.1-60f
Show newest version
package persistence.antlr.collections.impl;

/* ANTLR Translator Generator
 * Project led by Terence Parr at http://www.jGuru.com
 * Software rights: http://www.antlr.org/license.html
 *
 */

import persistence.antlr.collections.AST;

/** ASTArray is a class that allows ANTLR to
 * generate code that can create and initialize an array
 * in one expression, like:
 *    (new ASTArray(3)).add(x).add(y).add(z)
 */
public class ASTArray {
    public int size = 0;
    public AST[] array;


    public ASTArray(int capacity) {
        array = new AST[capacity];
    }

    public ASTArray add(AST node) {
        array[size++] = node;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy