File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -794,6 +794,13 @@ thread exection but the server will log message."
794794 (run-hooks 'dap-session-changed-hook ))
795795 debug-session)))
796796 (" exited" (dap--mark-session-as-terminated debug-session))
797+ (" continued"
798+ (-let [(&hash " threadId" thread-id) body]
799+ (remhash thread-id (dap--debug-session-thread-states debug-session))
800+ (if (and (equal thread-id (dap--debug-session-thread-id debug-session))
801+ (equal debug-session (dap--cur-session)))
802+ (dap--resume-application debug-session)
803+ (run-hooks 'dap-session-changed-hook ))))
797804 (" stopped"
798805 (-let [(&hash " threadId" thread-id " type" " reason" ) body]
799806 (puthash thread-id type (dap--debug-session-thread-states debug-session))
You can’t perform that action at this time.
0 commit comments