16 lines
799 B
Plaintext
16 lines
799 B
Plaintext
IN: inference
|
|
USING: help ;
|
|
|
|
HELP: #return
|
|
{ $values { "label" "a word or " { $link f } } { "node" "a new " { $link node } } }
|
|
{ $description "Creates a node which returns from a nested label, or if " { $snippet "label" } " is " { $link f } ", the top-level word being compiled." } ;
|
|
|
|
HELP: dataflow-graph
|
|
{ $var-description "In the dynamic extent of " { $link infer } " and " { $link dataflow } ", holds the first node of the dataflow graph being constructed." } ;
|
|
|
|
HELP: current-node
|
|
{ $var-description "In the dynamic extent of " { $link infer } " and " { $link dataflow } ", holds the most recently added node of the dataflow graph being constructed." } ;
|
|
|
|
HELP: d-in
|
|
{ $var-description "During inference, holds the number of inputs which the quotation has been inferred to require so far." } ;
|