[squeak-dev] The Trunk: Tools-eem.800.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Mar 14 20:26:45 UTC 2018


Eliot Miranda uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-eem.800.mcz

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

Name: Tools-eem.800
Author: eem
Time: 14 March 2018, 1:26:31.899555 pm
UUID: ef0a6927-db4f-4904-8604-9b23c32852f1
Ancestors: Tools-topa.799

Make local senders of... meaningful in MessageSets (e.g. Recent Submissions) when no method is selected, so that one can filter within a list browser.

=============== Diff against Tools-topa.799 ===============

Item was added:
+ ----- Method: MessageSet>>browseLocalSendersOfMessages (in category 'message functions') -----
+ browseLocalSendersOfMessages
+ 	"Override so that if no method is selected it searches for senders local to the current list."
+ 
+ 	self selectedClass ifNotNil:
+ 		[^super browseLocalSendersOfMessages].
+ 
+ 	self getSelectorAndSendQuery: #value:value:
+ 		to: [:literal :label|
+ 			self systemNavigation browseAllCallsOn: literal fromMethodReferences: messageList labelled: label]
+ 		with: { 'messages' }!



More information about the Squeak-dev mailing list