-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Parser parsed "a or (b or c) and d" into "a or b or c and d". ("and" has higher operator precedence) It was caused by a premature flattening of the expressions (a or (b or c) => a or b or c) while still parsing the expression. This did not regard that an operator with higher precedence than at the current point in parsing may follow next.
- Loading branch information
1 parent
e961455
commit c62e045
Showing
2 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters