The Trunk: System-mt.1126.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-mt.1126.mcz

commits-2
Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.1126.mcz

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

Name: System-mt.1126
Author: mt
Time: 4 December 2019, 10:33:06.353613 am
UUID: 396886fd-6463-4b06-9414-b972caa1ac4d
Ancestors: System-tpr.1125

Makes the title of access browsers more readable.

=============== Diff against System-tpr.1125 ===============

Item was changed:
  ----- Method: SystemNavigation>>browseAllAccessesTo:from: (in category 'browse') -----
  browseAllAccessesTo: instVarName from: aClass
  "Create and schedule a Message Set browser for all the receiver's methods or any methods of a subclass/superclass that refer to the instance variable name."
  "self new browseAllAccessesTo: 'contents' from: Collection."
 
  ^ self
  browseMessageList: [ (self allAccessesTo: instVarName from: aClass) sort ]
+ name: ('Accesses to {1} from {2}' translated format: {instVarName. aClass name})
- name: 'Accesses to ' , instVarName
  autoSelect: instVarName!