File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
src/main/antlr4/org/jabref/search Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -34,10 +34,11 @@ start:
3434// labels are used to refer to parts of the rules in the generated code later on
3535// label=actualThingy
3636expression:
37- LPAREN expression RPAREN #parenExpression // example: (author=miller)
38- | left=expression operator=(AND | OR) right=expression #binaryExpression // example: author = miller and title = test
39- | NOT expression #unaryExpression // example: not author = miller
40- | comparison #atomExpression
37+ LPAREN expression RPAREN #parenExpression // example: (author=miller)
38+ | NOT expression #unaryExpression // example: not author = miller
39+ | left=expression operator=AND right=expression #binaryExpression // example: author = miller and title = test
40+ | left=expression operator=OR right=expression #binaryExpression // example: author = miller and title = test
41+ | comparison #atomExpression
4142 ;
4243
4344comparison:
You can’t perform that action at this time.
0 commit comments