Revert "Allow th use of EXPECTATION keyword in variables tags."

This reverts commit fbc42b1930, which is
incorrect for the currently used version of Bison (in stretch).
Besides, even if the patch seems to work with recent versions of
Bison, it introduces hard to predict and probably very unpleasant
properties (this patch allows to use the `expectation` word anywhere,
this would be a problem if the user choose to name a variable or
parameter as `expectation`).
issue#70
Stéphane Adjemian (Charybdis) 2019-05-04 08:40:44 +02:00
parent 40ef954802
commit 358c3d6716
1 changed files with 0 additions and 2 deletions

View File

@ -3899,8 +3899,6 @@ symbol : NAME
{ $$ = $1; }
| PRIOR
{ $$ = $1; }
| EXPECTATION
{ }
;