180181182183184185186187188189190
} /** Tree parsing */ public void consumeNode(Object t) { ProxyTree p = (ProxyTree)t; /** Create a special kind of token holding information about the tree node. This allow * us to use the same method for token parser and tree parser. */ event(DBEventFactory.createConsumeToken(new DBTreeToken(p))); }
188189190191192193194195196
*/ event(DBEventFactory.createConsumeToken(new DBTreeToken(p))); } public void LT(int i, Object t) { ProxyTree p = (ProxyTree)t; /** See consumeNode() comment */ event(DBEventFactory.createLT(i, new DBTreeToken(p))); }