The Trunk: System-fbs.516.mcz

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

The Trunk: System-fbs.516.mcz

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

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

Name: System-fbs.516
Author: fbs
Time: 4 March 2013, 10:21:47.905 pm
UUID: d3eb929e-b62e-4856-80fd-ae702fa890fc
Ancestors: System-nice.515

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

=============== Diff against System-nice.515 ===============

Item was removed:
- ----- 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 capitalized)) asSymbol!