The Inbox: Collections-eem.355.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Collections-eem.355.mcz

commits-2
A new version of Collections was added to project The Inbox:
http://source.squeak.org/inbox/Collections-eem.355.mcz

==================== Summary ====================

Name: Collections-eem.355
Author: eem
Time: 4 June 2010, 6:40:57.371 pm
UUID: f2386231-6b23-41ed-8e2c-10565452c420
Ancestors: Collections-ar.354

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-ar.354 ===============

Item was changed:
  ----- Method: ByteArray>>isLiteral (in category 'testing') -----
  isLiteral
  "so that #(1 #[1 2 3] 5) prints itself"
+ ^self class == ByteArray!
- ^ true!