DIRECTOR: Lingo: Fix 57 more reduce/reduce conflicts in the grammar.

8 to go.
There was incorrect parsing for put..after command.
This commit is contained in:
Eugene Sandulenko 2017-01-23 19:21:37 +01:00
parent 68ab3f228c
commit a1a42d3116
2 changed files with 548 additions and 562 deletions

File diff suppressed because it is too large Load Diff

View File

@ -429,7 +429,6 @@ expr: INT { $$ = g_lingo->codeConst($1); }
| expr tOR expr { g_lingo->code1(g_lingo->c_or); }
| tNOT expr %prec UNARY { g_lingo->code1(g_lingo->c_not); }
| expr '&' expr { g_lingo->code1(g_lingo->c_ampersand); }
| expr tAFTER expr { g_lingo->code1(g_lingo->c_after); }
| expr tCONCAT expr { g_lingo->code1(g_lingo->c_concat); }
| expr tCONTAINS expr { g_lingo->code1(g_lingo->c_contains); }
| expr tSTARTS expr { g_lingo->code1(g_lingo->c_starts); }