Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-mt.354.mcz==================== Summary ====================
Name: EToys-mt.354
Author: mt
Time: 17 September 2019, 9:18:46.021406 am
UUID: 5e2f6ca9-432f-7c46-b540-80b5029ea797
Ancestors: EToys-pre.353
Moves convenience message for debugging from Etoys to Kernel package.
=============== Diff against EToys-pre.353 ===============
Item was removed:
- ----- Method: Process>>debug:title:full:contents: (in category '*Etoys-Squeakland-debugging') -----
- debug: context title: title full: bool contents: contents
- "Open debugger on self with context shown on top"
-
- | topCtxt |
- topCtxt := self isActiveProcess ifTrue: [thisContext] ifFalse: [self suspendedContext].
- (topCtxt hasContext: context) ifFalse: [^ self error: 'context not in process'].
- Debugger openOn: self context: context label: title contents: contents fullView: bool.
- !