Sha256: d8e7900b91c5fe2abb67d7aa5d774422ea20f5cd11e04bf8a124d60611117639

Contents?: true

Size: 1.56 KB

Versions: 1

Compression:

Stored size: 1.56 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.
 */

/**
 * Definition of Java type names.
 *
 * @author Stacey Kuznetsov
 * @author Robert Grimm
 * @version $Revision: 1.3 $
 */
module xtc.lang.JavaType(Identifier, Symbol);

import Identifier;
import Symbol;

GNode ResultType =
    <Void>    VoidTypeSpecifier
  / <Regular> Type
  ;

generic VoidTypeSpecifier = <Void> void:"void":Word;

generic Type =
  <Type> TypeName Dimensions?
  ;

generic TypeName =
    <Basic>     BasicType
  / <Qualified> yyValue:QualifiedIdentifier
  ;

String BasicType =
    <Byte>    "byte":Word
  / <Short>   "short":Word
  / <Char>    "char":Word
  / <Int>     "int":Word
  / <Long>    "long":Word
  / <Float>   "float":Word
  / <Double>  "double":Word
  / <Boolean> "boolean":Word
  ;

generic Dimensions =
  ( "[":Symbol void:"]":Symbol )+
  ;

Version data entries

1 entries across 1 versions & 1 rubygems

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