call-height ( #call -- n )


Vocabulary
compiler.cfg.builder.blocks

Inputs
#calla #call


Outputs
na number


Word description
Calculates how many items a #call will add or remove from the data stack.

Examples
USING: compiler.cfg.builder.blocks compiler.tree.builder prettyprint sequences ; [ 3append ] build-tree second call-height .
-2


Definition