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

fix select action null pos assert caused by typo in grammar.g

parent ddf87ee1
No related merge requests found
......@@ -1487,14 +1487,14 @@ action_select
pos = position_operator [tagset, vars] COMMA
condition = bool_operator [tagset, vars] {
// select(positon, condition);
action.reset(new Select(condition));
action.reset(new Select(condition, pos));
}
)
|
(
condition = bool_operator [tagset, vars] {
// select(condition);
action.reset(new Select(condition, pos));
action.reset(new Select(condition));
}
)
)
......
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