[Pkg] The Trunk: System-ul.445.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Jul 9 14:29:14 UTC 2011


Levente Uzonyi uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ul.445.mcz

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

Name: System-ul.445
Author: ul
Time: 9 July 2011, 4:28:49.996 pm
UUID: f245e950-b6d1-6c49-ae78-bb092ba2d9e2
Ancestors: System-cmm.444

MethodReference was the only implementor of #asStringOrText (besides Object, String and Text).  Implementing #asString instead of #asStringOrText makes the system a bit more cleaner and fixes the behavior of PluggableListMorphs with MethodReferences (e.g. implementors/senders browsers vs searching with the keyboard). There's a very slight chance, that this causes problems for some images, but no tests are broken because of this change in the Trunk image.

=============== Diff against System-cmm.444 ===============

Item was added:
+ ----- Method: MethodReference>>asString (in category 'converting') -----
+ asString
+ 
+ 	^stringVersion ifNil: [ self stringVersionDefault ]!

Item was removed:
- ----- Method: MethodReference>>asStringOrText (in category 'accessing') -----
- asStringOrText
- 
- 
- 	^stringVersion ifNil: [ self stringVersionDefault ]!



More information about the Packages mailing list