[squeak-dev] The Inbox: Morphic-ct.1514.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Sep 4 19:41:54 UTC 2019


A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-ct.1514.mcz

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

Name: Morphic-ct.1514
Author: ct
Time: 4 September 2019, 9:41:42.959698 pm
UUID: 275cb484-90ce-9549-8c1c-52ef3fe319b2
Ancestors: Morphic-mt.1513

Simplify DialogWindow>>#exploreInvocation

Thanks to Eliot for the hint!

=============== Diff against Morphic-mt.1513 ===============

Item was changed:
  ----- Method: DialogWindow>>exploreInvocation (in category 'running') -----
  exploreInvocation
  
+ 	self exclusive: false.
+ 	(self findInvocationContext stack collect: #method)
+ 		explore!
- 	| result context |
- 	self exclusive: false. "We want to explore."
- 
- 	result := OrderedCollection new.
- 	context := self findInvocationContext.
- 	
- 	[context sender] whileNotNil: [
- 		result add: context method.
- 		context := context sender].
- 	result add: context method.
- 
- 	result explore.!



More information about the Squeak-dev mailing list