The real problem comes when the expression is some...
# announcements
e
The real problem comes when the expression is something like this
a + b foo 10
becomes
(a + b).bar(10)
, then using the IDE to replace with infix call will become
(a + b) bar 10
, which will retains the bracket.