>>> "Anthony" == Anthony Heading <[EMAIL PROTECTED]> writes:
> Hi, > Using a couple of hours on an airplane, I tried switching > some of my code to use the lalr1.cc c++ skeleton. It seems > natural to subclass the generated parser object, Could you please detail why you'd like to do that? For several reasons, including recursion support, I think the proper way to extend the parser is to couple it with a parsing driver. See http://www.gnu.org/software/bison/manual/html_mono/bison.html#A-Complete-C_002b_002b-Example for an example.
