The Inbox: Tools-fbs.305.mcz

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

The Inbox: Tools-fbs.305.mcz

commits-2
A new version of Tools was added to project The Inbox:
http://source.squeak.org/inbox/Tools-fbs.305.mcz

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

Name: Tools-fbs.305
Author: fbs
Time: 5 March 2011, 10:30:29.562 pm
UUID: 51f6fbf4-dd9e-0b42-a7f2-b1eb1d508da7
Ancestors: Tools-fbs.304

#selectClassNamed: will replace most senders of #classListIndex:

=============== Diff against Tools-fbs.304 ===============

Item was added:
+ ----- Method: Browser>>selectClassNamed: (in category 'class list') -----
+ selectClassNamed: aSymbolOrString
+ aSymbolOrString
+ ifNil: [ self classListIndex: 0 ]
+ ifNotNil: [ self classListIndex: (self classList indexOf: aSymbolOrString asSymbol) ]!