Skip to content

WARemoteDebuggingWalkbackErrorHandler>>open: relies on breakpoints firing to debug continuations #77

@dalehenrich

Description

@dalehenrich

When native code is enabled in the GemTools (or tODE) client the breakpoint probably won't fire and that leads to interesting and unfortunate breakage while trying to debug the continuation.

At a minimum the following code:

  action == #'debug'
    ifTrue: [ 
      | meth |
      meth := self class lookupSelector: #'remoteBreakpointMethod'.
      meth setBreakAtStepPoint: 1.
      self remoteBreakpointMethod ]

should be changed to:

  action == #'debug'
    ifTrue: [ self halt ]

We could get fancier if we need to continue to use breakpoints ...

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions