Skip to content
Snippets Groups Projects
Commit 8ed162cd authored by ilor's avatar ilor
Browse files

Restore the llook rpos/lpos order swap in the grammar

parent a955e3b9
Branches
No related merge requests found
......@@ -1096,9 +1096,9 @@ bool_iteration
RPAREN {
ret.reset(new AtLeast(lpos, rpos, *pacc, expr, min_match));
}
| "llook" LPAREN
lpos = position_operator [tagset, vars] COMMA
rpos = position_operator [tagset, vars] COMMA
| "llook" LPAREN //note inverted rpos/lpos order
rpos = position_operator [tagset, vars] COMMA
lpos = position_operator [tagset, vars] COMMA
pacc = position_variable_acc [vars] COMMA
expr = bool_operator [tagset, vars]
RPAREN {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment