In http://pharobooks.gforge.inria.fr/PharoByExampleTwo-Eng/latest/, an ExpressionGrammar is defined. However, it is right-associative
parser parse: '1 + 2 + 6'. ======> #(1 $+ #(2 $+ 6))
How can I make it left-associative so that
parser parse: '1 + 2 + 6'.
results in
#(#(1 $+ 2) $+ 6)
?