-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Evan Carew wrote:
> I'm working with Bison 2.0 on linux and am having trouble getting
> all of the output from a recursive call to a rule. I have input a
> piece of C code which represents an enum into a lexer designed for
> C and a bison rule set desi
On Sat, 5 Sep 2009, Evan Carew wrote:
> For the following code, where it says "Look Here!", I've tried
> everything to get out all the enumerations. My input was [enum blah {
> one, two, three }; ] what I get back is [enum blah {one };].
> enum_specifier
> : ENUM '{' enumerator_list '}' { /*emi