help-bison
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Grammar failing single lookahead


From: Evan Lavelle
Subject: Re: Grammar failing single lookahead
Date: Wed, 30 May 2007 21:57:12 +0100
User-agent: Thunderbird 1.5.0.10 (Windows/20070221)

Evan Lavelle wrote:

Prolog
  : FirstPrologList
  | SecondPrologList
  | FirstPrologList SecondPrologList
  ;

I missed the case of no prolog at all, but this has no conflicts:

Prolog
  : /* nothing */
  | FirstPrologList
  | SecondPrologList
  | FirstPrologList SecondPrologList
  ;

Evan




reply via email to

[Prev in Thread] Current Thread [Next in Thread]