The Trunk: CollectionsTests-ar.152.mcz

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

The Trunk: CollectionsTests-ar.152.mcz

commits-2
Andreas Raab uploaded a new version of CollectionsTests to project The Trunk:
http://source.squeak.org/trunk/CollectionsTests-ar.152.mcz

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

Name: CollectionsTests-ar.152
Author: ar
Time: 5 March 2010, 8:50:04.447 pm
UUID: 19ca31f2-bfb5-524d-9a07-c3bd0c0cc55f
Ancestors: CollectionsTests-ar.151

Avoid dictionary protocol in Smalltalk.

=============== Diff against CollectionsTests-ar.151 ===============

Item was changed:
  ----- Method: ArrayTest>>setUp (in category 'initialize-release') -----
  setUp
 
  literalArray := #(1 true 3 #four).
  selfEvaluatingArray := { 1. true. (3/4). Color black. (2 to: 4) . 5 }.
  nonSEArray1 := { 1 . Set with: 1 }.
+ nonSEarray2 := { Smalltalk globals associationAt: #Array }.
- nonSEarray2 := { Smalltalk associationAt: #Array }.
  example1 := #(1 2 3 4 5).
  example2 := {1. 2. 3/4. 4. 5}. !