]> gitweb.factorcode.org Git - factor.git/blob - basis/ui/tools/debugger/debugger-docs.factor
Fix permission bits
[factor.git] / basis / ui / tools / debugger / debugger-docs.factor
1 USING: ui.gadgets help.markup help.syntax kernel quotations
2 continuations debugger ui ;
3 IN: ui.tools.debugger
4
5 HELP: <debugger>
6 { $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 } } }
7 { $description
8     "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."
9 } ;
10
11 { <debugger> debugger-window ui-try } related-words
12
13 HELP: debugger-window
14 { $values { "error" "an error" } }
15 { $description "Opens a window with a description of the error." } ;