-- Operator Conversion Problems
In case of :
a-1-4
convert to :
a--3
which is of course illegal
Yuk. I did not test thoroughly enough.
Relates to Issue #848, I close that Issue and move to that issue
We have a problem with this one. Tests fail
See if you can attend to it. Unit test is ready but marked @Ignore
Similar to #1255 , we cannot solve now
I think this is solvable. It seems the tipper's developer just removed the exression, instead of replacing the infix expression:
a-1-4 -> a-[1]-[3] -> a--3
What should be done is replacing a-1 with a, not just deleting 1:
a-1-4 -> a[-1]-[3] -> a-3
I may be wrong though...