execute-effect-unsafe ( word effect -- ) (original) (raw)
Vocabulary
combinators.private
Inputs
Outputs
None
Word description
Given a word and a stack effect, executes the word, blindly declaring at runtime that it has the given stack effect. This is a macro which expands given a literal effect parameter, and an arbitrary word which is not required at compile time.
Warning
If the word being executed has an incorrect stack effect, undefined behavior will result. User code should use execute( instead.
See also
call-effect, call-effect-unsafe, execute-effect
Definition