I have something like the following:
((x=2 or y=3 ) and (r=3 and c=3) or (x=5 and g=6))
I defined:
Token : /\w \= \d/
operator or|and
expression : token operator(s)
quoted_expression : "("expression")"
query : expression (s)|quoted_expression(s)
But I have a problem with parsing the above condition any idea how to parse the above?
At the core, you want
After eliminating left-recursion and adding the necessary code blocks, you get the following: