The Trunk: EToys-fbs.92.mcz

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

The Trunk: EToys-fbs.92.mcz

commits-2
Frank Shearar uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-fbs.92.mcz

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

Name: EToys-fbs.92
Author: fbs
Time: 4 March 2013, 10:22:27.2 pm
UUID: b7eb5212-69a0-4f19-ada2-cb716e65a9f5
Ancestors: EToys-nice.91

All this method's senders are in the Etoys package, so it almost certainly belongs in the Etoys package.

=============== Diff against EToys-nice.91 ===============

Item was added:
+ ----- Method: Utilities class>>getterSelectorFor: (in category '*Etoys') -----
+ getterSelectorFor: identifier
+ "Answer the corresponding getter.  Two idiosyncratic vectorings herein... "
+
+ "Utilities getterSelectorFor: #elvis"
+
+ | aSymbol |
+ (aSymbol := identifier asSymbol) == #isOverColor: ifTrue: [^ #seesColor:].
+ aSymbol == #copy ifTrue: [^ #getNewClone].
+
+ ^ ('get', (identifier asString capitalized)) asSymbol!