Karl Ramberg uploaded a new version of System to project Etoys:
http://source.squeak.org/etoys/System-kfr.58.mcz==================== Summary ====================
Name: System-kfr.58
Author: kfr
Time: 24 March 2012, 1:30:41 am
UUID: 2a42676a-1894-fe4b-81e5-4919a2ca944f
Ancestors: System-bf.57
SQ-1064 added a missing 'toCamelCase'
=============== Diff against System-bf.57 ===============
Item was changed:
----- Method: Utilities class>>getterSelectorFor: (in category 'miscellaneous') -----
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 toCamelCase capitalized)) asSymbol!
- ^ ('get', (identifier asString capitalized)) asSymbol!
_______________________________________________
etoys-dev mailing list
[hidden email]
http://lists.squeakland.org/mailman/listinfo/etoys-dev