Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
dalehenrich opened this issue Jun 24, 2015 · 1 comment

Comments

@dalehenrich
Copy link
Member

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 ...

@dalehenrich
Copy link
Member Author

Based on private email with @marianopeck

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant