stack-checker.*: misc doc additions

db4
Björn Lindqvist 2015-02-05 10:36:44 +00:00
parent f99c03d023
commit 636d8879d6
3 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,6 @@
USING: assocs help.markup help.syntax ;
IN: stack-checker.branches
HELP: collect-variables
{ $values { "hash" assoc } }
{ $description "Gathers all variables used during inferencing into a hash." } ;

View File

@ -0,0 +1,6 @@
USING: compiler.tree effects help.markup help.syntax math quotations ;
IN: stack-checker.recursive-state
HELP: recursive-quotation?
{ $values { "quot" quotation } }
{ $description "Checks if the quotation is among the registered recursive quotations." } ;

View File

@ -11,3 +11,7 @@ HELP: #>r,
"V{\n T{ #shuffle\n { mapping { { 124 123 } } }\n { in-d { 123 } }\n { out-r { 124 } }\n }\n}"
}
} ;
HELP: #drop,
{ $values { "values" sequence } }
{ $class-description "Outputs a " { $link #shuffle } " instruction which drops one or more values from the data stack." } ;