I think can answer my own question: there is a reference to apifuncs at http://antlr.org/api/C/group__apistructures.html (but not at http://www.antlr.org/api/C/atsections.html).
On Wed, Jul 20, 2011 at 7:25 PM, Vlad Roubtsov <v...@demoninsight.com>wrote: > Greetings, > > I am new to ANTLR but have extensive experience with JavaCC. With some > difficulty (section '@apifuncs' does not appear to be documented but was > mentioned in this list) I can intercept parser errors with my own > implementation of displayRecognitionError(): > > @parser::apifuncs > { > RECOGNIZER->displayRecognitionError = <my parser error function>; > } > > However, lexer errors continued to cause messages to be printed to stderr. > After some more poking around the source code the following seemed to work: > > @lexer::apifuncs > { > LEXER->rec->displayRecognitionError = <my lexer error function>; > } > > My question: are these @(lexer|parser)::apifuncs section declarations the > supported way to do this? (@members does not work). > > Thank you, > Vlad > List: http://www.antlr.org/mailman/listinfo/antlr-interest Unsubscribe: http://www.antlr.org/mailman/options/antlr-interest/your-email-address -- You received this message because you are subscribed to the Google Groups "il-antlr-interest" group. To post to this group, send email to il-antlr-inter...@googlegroups.com. To unsubscribe from this group, send email to il-antlr-interest+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/il-antlr-interest?hl=en.