alien-indirect-error ( -- * )


Vocabulary
alien

Error description
Thrown if the word calling alien-indirect was not compiled with the optimizing compiler. This may be a result of one of two failure conditions:
This can happen when experimenting with alien-indirect in this listener. To fix the problem, place the alien-indirect call in a word; word definitions are automatically compiled with the optimizing compiler.
One of the three inputs to alien-indirect is not a literal value.


Definition
IN: alien

TUPLE: alien-indirect-error ;


USING: kernel ;

IN: alien

: alien-indirect-error ( -- * )
\ alien-indirect-error boa throw ;