[antlr-interest] v3.0 debug interface

Andy Tripp atripp at comcast.net
Tue Mar 22 07:31:50 PST 2005


Terence,

You may also want to add a method to let the debugger know when
the lexer has matched a Token:

  public void nextToken(Token token);

And maybe let the debugger know about the AST that's being created:

  public void rootCreated(AST root);
  public void childAdded(AST parent, AST child);

Andy



More information about the antlr-interest mailing list