Ejemplo n.º 1
0
 public void endResync() {
   dbg.endResync();
 }
Ejemplo n.º 2
0
 public void beginResync() {
   dbg.beginResync();
 }
Ejemplo n.º 3
0
 protected Object getMissingSymbol(
     IntStream input, RecognitionException e, int expectedTokenType, BitSet follow) {
   Object o = super.getMissingSymbol(input, e, expectedTokenType, follow);
   dbg.consumeNode(o);
   return o;
 }
Ejemplo n.º 4
0
 public void reportError(RecognitionException e) {
   dbg.recognitionException(e);
 }
Ejemplo n.º 5
0
 public void endBacktrack(int level, boolean successful) {
   dbg.endBacktrack(level, successful);
 }
Ejemplo n.º 6
0
 public void beginBacktrack(int level) {
   dbg.beginBacktrack(level);
 }