Detecting open debuggers
Feb. 17, 2014
8:16 p.m.
How to detect debugger windows? In pharo 2.0 I had this SystemWindow allSubInstances select: [:each| each model isKindOf: Debugger ] What would be the 3.0 equivalent? thanks, Norbert
Feb. 17, 2014
8:27 p.m.
MorphicWindowAdapter allInstances select: [:w | (w model isKindOf: WindowModel) and: [ w model model isKindOf: SpecDebugger ] ] Based on "SpecDebugger class>>closeAllDebuggers". Cheers, Andrei On Mon, Feb 17, 2014 at 9:16 PM, Norbert Hartl <norbert@hartl.name> wrote:
How to detect debugger windows? In pharo 2.0 I had this
SystemWindow allSubInstances select: [:each| each model isKindOf: Debugger ]
What would be the 3.0 equivalent?
thanks,
Norbert
4547
Age (days ago)
4547
Last active (days ago)
1 comments
2 participants
participants (2)
-
Andrei Chis -
Norbert Hartl