The Trunk: Tools-yo.411.mcz

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

The Trunk: Tools-yo.411.mcz

commits-2
Yoshiki Ohshima uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-yo.411.mcz

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

Name: Tools-yo.411
Author: yo
Time: 6 June 2012, 4:04:13.28 pm
UUID: 1f8d0814-04ac-4aa7-bc64-39a6e292f566
Ancestors: Tools-fbs.410

The list of messages in Change Sorters consistently shows the method category names as opposed to their package names or the method category names when an entry is in a different package.  If the method is not in a different package, you can tell its package from the class list.  If it is in a different package, you can tell it by looking at the asterisk.  So, showing method category names consistently is more helpful.

=============== Diff against Tools-fbs.410 ===============

Item was changed:
  ----- Method: ChangeSorter>>messageList (in category 'message list') -----
  messageList
+ | thisClass organization |
- | thisClass |
  (thisClass := self selectedClassOrMetaClass) ifNil: [^ #() ] .
+ organization := thisClass organization.
  ^self basicMessageList collect: [ :each |
+ each asString , (self noteString: (organization categoryOfElement: each))].
- each asString , (self packageNoteForClass: thisClass selector: each) ] .
  !