2008-01-05 17:27:15 -05:00
USING: ui.gadgets help.markup help.syntax kernel quotations
2009-05-14 17:54:16 -04:00
continuations debugger ui ;
2008-01-05 17:27:15 -05:00
IN: ui.tools.debugger
2007-09-20 18:09:08 -04:00
HELP: <debugger>
2014-05-18 23:09:10 -04:00
{ $values { "error" "an error" } { "continuation" continuation } { "restarts" "a sequence of " { $link restart } " instances" } { "restart-hook" { $quotation ( debugger -- ) } } { "debugger" "a new " { $link debugger } } }
2007-09-20 18:09:08 -04:00
{ $description
"Creates a gadget displaying a description of the error, along with buttons to print the contents of the stacks in the listener, and a list of restarts."
} ;
2008-11-22 00:01:20 -05:00
{ <debugger> debugger-window } related-words
2007-09-20 18:09:08 -04:00
HELP: debugger-window
2009-02-09 01:25:05 -05:00
{ $values { "error" "an error" } { "continuation" continuation } }
2007-09-20 18:09:08 -04:00
{ $description "Opens a window with a description of the error." } ;