The Trunk: Collections-nice.178.mcz

1 message Options
Embed this post
Permalink
commits-2

The Trunk: Collections-nice.178.mcz

Reply Threaded More More options
Print post
Permalink
Nicolas Cellier uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-nice.178.mcz

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

Name: Collections-nice.178
Author: nice
Time: 2 November 2009, 10:41:30 am
UUID: 0c724f71-9fc7-4701-a3cb-787c96f8c374
Ancestors: Collections-nice.177

subclasses of Array are not literal

=============== Diff against Collections-nice.177 ===============

Item was changed:
  ----- Method: Array>>isLiteral (in category 'testing') -----
  isLiteral
+ ^self class == Array and: [self allSatisfy: [:each | each isLiteral]]!
- ^ self allSatisfy: [:each | each isLiteral]!