Status: Accepted
Owner: marianopeck
CC:
[hidden email]
New issue 4183 by marianopeck: SmalltalkImage>>abandoTempNames uses old
method trailer bytes
http://code.google.com/p/pharo/issues/detail?id=4183Pharo core version: 13183
SmalltalkImage >> abandonTempNames
is doing a
addLast: (m copyWithTrailerBytes: #(0 ))]]].
copyWithTrailerBytes: #(0 ) will fail since it expects an instnace of
CompiledMethodTrailer, not an array.
So....I guess it should be replaced by
addLast: (m copyWithTrailerBytes: (CompiledMethodTrailer empty))]]].
If Igor agree, I submit the fix
_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker