catchstack ( -- catchstack )
Factor documentation > Factor handbook > The language > Continuations > Continuation implementation details
Prev:set-namestack ( namestack -- )
Next:set-catchstack ( catchstack -- )


Vocabulary
continuations.private

Inputs and outputs
catchstacka vector of continuations


Word description
Outputs a copy of the current catchstack.

Definition
USING: kernel ;

IN: continuations.private

: catchstack ( -- catchstack ) catchstack* clone ; inline