[squeak-dev] Tests.Compiler.DecompilerTests.testDecompilerInClassesMNtoMZ

Frank Shearar frank.shearar at gmail.com
Fri Apr 12 14:14:38 UTC 2013


This, and the other decompiler test failure, happens because of the
recent chained assignment work:

original snippet:

    ActiveWorld := ActiveHand := ActiveEvent := nil.

decompiled version of sameL

    ActiveEvent := nil.
    ActiveHand := nil.
    ActiveWorld := nil.

How to fix?

frank


More information about the Squeak-dev mailing list