What would be the best way to change operator precedence for a concrete expression?
For example I have a class:
class A(){
def multiply(a) {
...
}
def plus(a) {
...
}
def minus(b) {
...
}
}
a = new A()
b = new A()
c = new A()
d = a + (b - c) * d
As multiplication has higher precedence than + and - I get an AST of form
+
/ \
a *
/ \
- d
/ \
b c
What would be the easiest way to convert it to a tree where * has lower precedence than + and -. I assume that parentheses are allowed only to group - and +, i.e. an expression (a * b - c) * d is not valid and should be not expected as an input.
*the symbol for 'right shift'? – Jonathan Leffler May 13 '12 at 21:10