Fix bootstrap errors
parent
8ca7993d0f
commit
f3d93496b7
|
@ -21,7 +21,7 @@ HELP: module-def "( name -- path )"
|
||||||
|
|
||||||
HELP: modules f
|
HELP: modules f
|
||||||
{ $description "Variable. Hashtable mapping loaded module names to " { $link module } " instances." }
|
{ $description "Variable. Hashtable mapping loaded module names to " { $link module } " instances." }
|
||||||
{ $see-also require reload-module } ;
|
{ $see-also require load-module } ;
|
||||||
|
|
||||||
HELP: load-module "( name -- )"
|
HELP: load-module "( name -- )"
|
||||||
{ $values { "name" "a module name string" } }
|
{ $values { "name" "a module name string" } }
|
||||||
|
@ -47,7 +47,7 @@ $terpri
|
||||||
|
|
||||||
HELP: provide "( name files tests -- )"
|
HELP: provide "( name files tests -- )"
|
||||||
{ $values { "name" "a string" } { "files" "a sequence of strings" } { "tests" "a sequence of strings" } }
|
{ $values { "name" "a string" } { "files" "a sequence of strings" } { "tests" "a sequence of strings" } }
|
||||||
{ $description "Registers a module definition and loads the source files. Usually instead of calling this word, module definitions use the parsing word " { $link POSTPONE: PROVIDE: } " instead." } ;
|
{ $description "Registers a module definition and loads its source files. Usually instead of calling this word, module definitions use the parsing word " { $link POSTPONE: PROVIDE: } " instead." } ;
|
||||||
|
|
||||||
HELP: test-module "( name -- )"
|
HELP: test-module "( name -- )"
|
||||||
{ $values { "name" "a module name string" } }
|
{ $values { "name" "a module name string" } }
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
USING: generic help kernel math words ;
|
USING: generic help kernel math modules words ;
|
||||||
|
|
||||||
HELP: parsing ""
|
HELP: parsing ""
|
||||||
{ $description "Declares the most recently defined word as a parsing word." }
|
{ $description "Declares the most recently defined word as a parsing word." }
|
||||||
|
@ -236,7 +236,7 @@ $terpri
|
||||||
|
|
||||||
HELP: REQUIRES: "modules... ;"
|
HELP: REQUIRES: "modules... ;"
|
||||||
{ $values { "modules" "module name strings" } }
|
{ $values { "modules" "module name strings" } }
|
||||||
{ $description "Loads a list of modules by calling " { $link (require) " on each one." } ;
|
{ $description "Loads a list of modules by calling " { $link (require) } " on each one." } ;
|
||||||
|
|
||||||
HELP: PROVIDE: "name files tests ;"
|
HELP: PROVIDE: "name files tests ;"
|
||||||
{ $values { "name" "a string" } { "files" "a sequence of strings" } { "tests" "a sequence of strings" } }
|
{ $values { "name" "a string" } { "files" "a sequence of strings" } { "tests" "a sequence of strings" } }
|
||||||
|
|
Loading…
Reference in New Issue