The Inbox: Morphic-ct.1514.mcz

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

The Inbox: Morphic-ct.1514.mcz

commits-2
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.!