Re: %glr-parser & %pure-parser

2007-05-29 Thread Frans Englich
On Saturday 26 May 2007 21:13, Joel E. Denny wrote: > On Fri, 25 May 2007, Frans Englich wrote: > > adds %glr-parser under %pure-parser, two things happens beyond changing > > the parser algorithm: > > > > * It copies all the code in the c++ section into the header. > > This is addressed in test re

Re: %glr-parser & %pure-parser

2007-05-26 Thread Joel E. Denny
On Fri, 25 May 2007, Frans Englich wrote: > adds %glr-parser under %pure-parser, two things happens beyond changing the > parser algorithm: > > * It copies all the code in the c++ section into the header. This is addressed in test release 2.3a. See the heading "Handling of traditional Yacc pr

%glr-parser & %pure-parser

2007-05-25 Thread Frans Englich
Hello, If I to the following Bison grammar: %{ void dummy(); %} %pure-parser %% Root: /* empty*/ { } %% adds %glr-parser under %pure-parser, two things happens beyond changing t