1
vote
1answer
340 views

bison/yacc grammar disambiguation

I have following bison grammar (as part of more complex grammar): expression: IDENTIFIER | CONST | LAMBDA match_block ; match_block: pattern '=' expression | match_block '|' ...
2
votes
1answer
642 views

How to understand LALR Shift/Reduce Algorithm

I'm trying to read Compiler Construction by Niklaus Wirth. On page 23 he starts to describe how LALR would parse the expression x*(y+z) given the following grammar: E = T | E "+" T. expression T ...
0
votes
1answer
298 views

Template class using Gold Parser and the Klimstra engine

I'm using Klimstra's VB.NET template from the "Create skeleton program" of the GOLD parser but the resulting template has methods with the overrides keyword and inherits from TemplateParser.. Am I ...
5
votes
2answers
928 views

LALR(1) or GLR on Windows - Alternatives to Bison++ / Flex++ that are current?

I have been using the same version of bison++ (1.21-8) and flex++ (2.3.8-7) since 2002. I'm not looking for an alternative to LALR(1) or GLR at this time, just looking for the most current options. ...