drscheme:debug:show-backtrace-window in DrScheme Tools Functions
(drscheme:debug:show-backtrace-window -> void?
error-message dis k)
error-message : string?
dis : (listof any?)
k : (union procedure? false?)
Shows the backtrace window you get when clicking on the bug in DrScheme's REPL.
The error-message argument is the text of the error,
dis is the debug information, extracted from the
continuation mark in the exception record, using
drscheme:debug:get-cm-key, and dis k
is a continuation which may be used to resume execution
in the case of a breakpoint (or #f for non-breakpoints)
.