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

15 lines
697 B
Factor
Raw Normal View History

2007-09-20 18:09:08 -04:00
USING: ui.tools.debugger ui.gadgets help.markup help.syntax
kernel quotations continuations debugger ui ;
HELP: <debugger>
{ $values { "error" "an error" } { "restarts" "a sequence of " { $link restart } " instances" } { "restart-hook" "a quotation with stack effect " { $snippet "( list -- )" } } { "gadget" "a new " { $link gadget } } }
{ $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 ui-try } related-words
HELP: debugger-window
{ $values { "error" "an error" } }
{ $description "Opens a window with a description of the error." } ;