Sha256: b9342d10b53062fd2fbca45d24758d970d5c31f1692a53a37719f539a8e4eb08

Contents?: true

Size: 1.35 KB

Versions: 1

Compression:

Stored size: 1.35 KB

Contents

/*
 * xtc - The eXTensible Compiler
 * Copyright (C) 2005 Robert Grimm
 *
 * 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 spacing, including C comments.
 *
 * @author Robert Grimm
 * @version $Revision: 1.3 $
 */
module xtc.util.Spacing;

transient void Spacing            =
  ( Space / LineTerminator / TraditionalComment / EndOfLineComment )*
  ;

transient void Space              = ' ' / '\t' / '\f' ;
transient void TraditionalComment = "/*" ( '*' !'/' / !'*' _ )* "*/" ;
transient void EndOfLineComment   = "//" ( ![\n\r] _ )* LineTerminator ;
transient void LineTerminator     = '\r' '\n' / '\r' / '\n' ;
transient void EndOfFile          = !_ ;

Version data entries

1 entries across 1 versions & 1 rubygems

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