1 package persistence.antlr; 2 3 /* ANTLR Translator Generator 4 * Project led by Terence Parr at http://www.jGuru.com 5 * Software rights: http://www.antlr.org/license.html 6 * 7 */ 8 9 /** 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 } 19