Nicolas Cellier uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-nice.360.mcz==================== Summary ====================
Name: Collections-nice.360
Author: nice
Time: 5 June 2010, 10:00:50.743 am
UUID: 558a78a3-cd80-8e47-94c4-ec27913439f1
Ancestors: Collections-ul.359
Merge Collections-eem.355
Make ByteArray>>isLiteral more specific so that e.g.
subinstances such as CompiledMethods are not literal.
Without this the PointerFinder is horribly broken.
=============== Diff against Collections-ul.359 ===============
Item was changed:
----- Method: ByteArray>>isLiteral (in category 'testing') -----
isLiteral
"so that #(1 #[1 2 3] 5) prints itself"
+ ^self class == ByteArray!
- ^ true!