Issue 5440 in pharo: Fix isPostmortem

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

Issue 5440 in pharo: Fix isPostmortem

pharo
Status: FixToInclude
Owner: [hidden email]
Labels: Milestone-1.4 Type-Bug

New issue 5440 by [hidden email]: Fix isPostmortem
http://code.google.com/p/pharo/issues/detail?id=5440

isPostMortem
        "return whether we're inspecting a frozen exception without a process  
attached"
        |selectedContext suspendedContext |
        selectedContext := self selectedContext.
        suspendedContext := interruptedProcess suspendedContext.
        suspendedContext ifNil: [ ^ false ].
        (suspendedContext == selectedContext)
                ifTrue: [ ^ false ].
        ^ (suspendedContext findContextSuchThat: [:c | c sender ==
selectedContext]) isNil



_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 5440 in pharo: Fix isPostmortem

pharo
Updates:
        Status: Integrated

Comment #2 on issue 5440 by [hidden email]: Fix isPostmortem
http://code.google.com/p/pharo/issues/detail?id=5440

in 14380


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker