> On 2 Apr 2017, at 17:02, Laura Morales <[email protected]> wrote: > > I thought reentrancy was a substitute to prefix renaming, but looks like they > solve different problems so I have to use both.
For different parsers, use different names. For multiple instances of the same parser, use the reentrant parser. Otherwise, it is more normal to parse all words and numbers in one go in a single parser and put them into different containers as they appear. For just finding simple tokens, it might be easier to write the code directly without a parser. _______________________________________________ [email protected] https://lists.gnu.org/mailman/listinfo/help-bison
