IN: compiler USING: help words ; HELP: compiled? "( word -- ? )" { $values { "word" "a word" } } { $description "Tests if a word is compiled." } { $notes "Primitives are considered as compiled words." } ; HELP: compile "( word -- )" { $values { "word" "a word" } } { $description "Compiles a word together with any uncompiled dependencies. Does nothing if the word is already compiled." } { $errors "If compilation fails, this word can throw an error. In particular, if the word's stack effect cannot be inferred (see " { $link "inference" } ", this word will throw an error. The related " { $link try-compile } " word logs errors and returns rather than throwing." } ; HELP: compiled f { $description "Compiles the most recently defined word." } { $see word } ; HELP: try-compile "( word -- )" { $values { "word" "a word" } } { $description "Compiles a word together with any uncompiled dependencies. Does nothing if the word is already compiled." } { $errors "If compilation fails, this word logs the error to the default stream and returns normally." } ; HELP: compile-vocabs "( seq -- )" { $values { "seq" "a sequence of strings" } } { $description "Compiles all words in the vocabularies named by elements of a sequence, skipping compiled words. Compile errors are logged to the default stream." } ; HELP: compile-all "( -- )" { $description "Compile all words in the dictionary which have not already been compiled. Compile errors are logged to the default stream." } ; HELP: recompile "( word -- )" { $values { "word" "a word" } } { $description "Compiles a word, discarding a previous compiled definition first." } ; HELP: compile-quot "( quot -- word )" { $values { "quot" "a quotation" } { "word" "a new, uninterned word" } } { $description "Creates a new uninterned word having the given quotation as its definition, and compiles it. The returned word can be passed to " { $link execute } "." } { $errors "Throws an error if the stack effect of the quotation cannot be inferred. See " { $link "inference" } "." } ; HELP: compile-1 "( quot -- )" { $values { "quot" "a quotation" } } { $description "Compiles and runs a quotation." } { $errors "Throws an error if the stack effect of the quotation cannot be inferred. See " { $link "inference" } "." } ;