Handbook
Glossary
deoptimize ( word error -- * )
Vocabulary
compiler
Inputs
word
an
object
error
an
object
Outputs
None
Definition
USING:
combinators
continuations
kernel
stack-checker.errors
;
IN:
compiler
:
deoptimize
( word error -- * )
{
{
[
dup
inference-error?
not
]
[
rethrow
]
}
{
[
2dup
ignore-error?
]
[
ignore-error
]
}
[
remember-error
]
}
cond
;