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