01: package antlr;
02:
03: /* ANTLR Translator Generator
04: * Project led by Terence Parr at http://www.cs.usfca.edu
05: * Software rights: http://www.antlr.org/license.html
06: */
07:
08: /** This object contains the data associated with an
09: * input AST. Multiple parsers
10: * share a single TreeParserSharedInputState to parse
11: * the same tree or to have the parser walk multiple
12: * trees.
13: */
14: public class TreeParserSharedInputState {
15: /** Are we guessing (guessing>0)? */
16: public int guessing = 0;
17: }
|