update OR to not be [oO][rR] and just look for OR

This commit is contained in:
Lily 2025-04-06 17:39:54 -04:00
parent a27db23a65
commit 18972aa6d8
No known key found for this signature in database
GPG key ID: D916CEDDF4F93CE7

View file

@ -12,7 +12,7 @@ Start <- QueryPartList
~ws <- [ ]+
QueryPartList <- ComplexQueryPart ( ws ("AND" ws)? ComplexQueryPart)* ws*
ComplexQueryPart <- SomewhatComplexQueryPart ws $or<[O][R]> ws ComplexQueryPart / SomewhatComplexQueryPart
ComplexQueryPart <- SomewhatComplexQueryPart ws "OR" ws ComplexQueryPart / SomewhatComplexQueryPart
SomewhatComplexQueryPart <- [(] QueryPartList [)] / QueryPart