The Trunk: Protocols-mt.54.mcz

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

The Trunk: Protocols-mt.54.mcz

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

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

Name: Protocols-mt.54
Author: mt
Time: 3 February 2016, 9:02:00.563922 pm
UUID: d17a73e0-178a-45c8-a506-72fb28b86696
Ancestors: Protocols-mt.53

Adds menu callback for object explorer.

=============== Diff against Protocols-mt.53 ===============

Item was added:
+ ----- Method: ObjectExplorer>>browseFullProtocol (in category '*Protocols-Tools') -----
+ browseFullProtocol
+ "Open up a protocol-category browser on the value of the receiver's current selection.  If in mvc, an old-style protocol browser is opened instead."
+
+ Smalltalk isMorphic
+ ifFalse: [ProtocolBrowser openSubProtocolForClass: self selectedClass]
+ ifTrue: [InstanceBrowser new openOnObject: self object showingSelector: nil].!