Updates:
Status: Accepted
Labels: -Milestone-1.2 Milestone-1.3
Comment #6 on issue 2454 by stephane.ducasse: decompiler fix
http://code.google.com/p/pharo/issues/detail?id=2454In 12295 we tested with igor and without the fix in pharo we get the same
as in Squeak:
test
| one two |
two := 2.
^{[one := 1].
[ [one + two] value]}
is decompiled into
test
| two one |
two := 2.
^ {[one := 1]. [[one + two] value]}