Sha256: aba1176ad1320fb5349ca8ff547179ccaaf13bc1a95f7c376eed06414d043673

Contents?: true

Size: 1.54 KB

Versions: 1

Compression:

Stored size: 1.54 KB

Contents

/*
 * xtc - The eXTensible Compiler
 * Copyright (C) 2004-2005 Robert Grimm, New York University
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

/**
 * Java grammar with AST support.
 *
 * @author Stacey Kuznetsov
 * @author Robert Grimm
 * @version $Revision: 1.7 $
 */
module xtc.lang.JavaTree;

instantiate xtc.lang.JavaType(xtc.lang.JavaIdentifier, xtc.lang.JavaSymbol);
instantiate xtc.lang.JavaConstant(xtc.lang.JavaIdentifier, xtc.util.Spacing);
instantiate xtc.lang.JavaIdentifier(xtc.lang.JavaSymbol, xtc.util.Spacing);
instantiate xtc.util.Symbol(xtc.util.Spacing);
instantiate xtc.lang.JavaSymbol(xtc.util.Symbol);
instantiate xtc.util.Spacing;

modify xtc.lang.JavaCore(xtc.lang.JavaType, xtc.lang.JavaConstant,
                         xtc.lang.JavaIdentifier, xtc.lang.JavaSymbol,
                         xtc.util.Spacing);

option withLocation, constant, parser(xtc.lang.JavaTreeParser);

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rockit-0.7.2 tests/acceptance/packrat/java/xtc.lang.java/JavaTree.rats