factor/basis/ui/tools/debugger/debugger-docs.factor

16 lines
733 B
Factor
Raw Normal View History

2008-01-05 17:27:15 -05:00
USING: ui.gadgets help.markup help.syntax kernel quotations
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>
{ $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."
} ;
{ <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." } ;