[squeak-dev] The Trunk: EToys-fbs.92.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Mar 4 22:23:24 UTC 2013


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!



More information about the Squeak-dev mailing list