Handbook
Glossary
after-break ( object -- )
Vocabulary
tools
.
continuations
.
private
Inputs
object
an
object
Outputs
None
Definition
USING:
combinators
continuations
continuations.private
kernel
;
IN:
tools.continuations.private
:
after-break
( object -- )
{
{
[
dup
continuation?
]
[
(continue)
]
}
{
[
dup
not
]
[
"Single stepping abandoned"
rethrow
]
}
}
cond
;