source: trunk/yao/share/antlr-2.7.7/antlr/TreeParserSharedInputState.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: 583 bytes
Line 
1package antlr;
2
3/* ANTLR Translator Generator
4 * Project led by Terence Parr at http://www.cs.usfca.edu
5 * Software rights: http://www.antlr.org/license.html
6 *
7 * $Id: //depot/code/org.antlr/release/antlr-2.7.7/antlr/TreeParserSharedInputState.java#2 $
8 */
9
10/** This object contains the data associated with an
11 *  input AST.  Multiple parsers
12 *  share a single TreeParserSharedInputState to parse
13 *  the same tree or to have the parser walk multiple
14 *  trees.
15 */
16public class TreeParserSharedInputState {
17    /** Are we guessing (guessing>0)? */
18    public int guessing = 0;
19}
Note: See TracBrowser for help on using the repository browser.