catchstack* ( -- catchstack )


Vocabulary
continuations.private

Inputs and outputs
catchstacka vector of continuations


Word description
Outputs the current catchstack.

Definition
USING: kernel.private vectors ;

IN: continuations.private

: catchstack* ( -- catchstack )
CONTEXT-OBJ-CATCHSTACK context-object { vector } declare ;
inline