Bootstrap now loads GUI walker
parent
c41bd690f4
commit
70a86f60e3
|
@ -146,8 +146,6 @@ ARTICLE: "timing" "Timing code"
|
|||
ARTICLE: "annotations" "Word annotations"
|
||||
"The word annotation feature modifies word definitions to add debugging code. You can restore the old definition by calling " { $link reload } " on the word in question."
|
||||
{ $subsection watch }
|
||||
{ $subsection break }
|
||||
{ $subsection break-on }
|
||||
{ $subsection profile }
|
||||
"All of the above words are implemented using a single combinator which applies a quotation to a word definition to yield a new definition:"
|
||||
{ $subsection annotate } ;
|
||||
|
|
|
@ -94,10 +94,11 @@ sequences vectors words ;
|
|||
"/library/syntax/see.factor"
|
||||
"/library/syntax/parser.factor"
|
||||
|
||||
"/library/tools/interpreter.factor"
|
||||
"/library/tools/describe.factor"
|
||||
"/library/tools/debugger.factor"
|
||||
|
||||
"/library/threads.factor"
|
||||
|
||||
"/library/help/stylesheet.factor"
|
||||
"/library/help/topics.factor"
|
||||
"/library/help/markup.factor"
|
||||
|
@ -115,7 +116,7 @@ sequences vectors words ;
|
|||
|
||||
"/library/test/test.factor"
|
||||
|
||||
"/library/threads.factor"
|
||||
"/library/tools/interpreter.factor"
|
||||
|
||||
"/library/io/server.factor"
|
||||
"/library/tools/jedit.factor"
|
||||
|
@ -206,6 +207,7 @@ sequences vectors words ;
|
|||
"/library/ui/ui.factor"
|
||||
"/library/ui/gadgets/presentations.factor"
|
||||
"/library/ui/tools/listener.factor"
|
||||
"/library/ui/tools/walker.factor"
|
||||
"/library/ui/tools/search.factor"
|
||||
"/library/ui/tools/browser.factor"
|
||||
"/library/ui/tools/help.factor"
|
||||
|
|
|
@ -14,7 +14,7 @@ HELP: apropos "( substr -- )"
|
|||
HELP: annotate "( word quot -- )"
|
||||
{ $values { "word" "a word" } { "quot" "a quotation with stack effect " { $snippet "( word def -- def )" } } }
|
||||
{ $description "Changes a word definition to the result of applying a quotation to the old definition." }
|
||||
{ $notes "This is the common word to implement " { $link watch } ", " { $link break } ", " { $link break-on } " and " { $link profile } "." } ;
|
||||
{ $notes "This word is used to implement " { $link watch } " and " { $link profile } "." } ;
|
||||
|
||||
HELP: watch "( word -- )"
|
||||
{ $values { "word" "a word" } }
|
||||
|
|
Loading…
Reference in New Issue