mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-02 08:19:19 +00:00
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:
parent
68ab3f228c
commit
a1a42d3116
File diff suppressed because it is too large
Load Diff
@ -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); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user