make-inline ( word -- )


Vocabulary
words

Inputs and outputs
worda word


Word description
Declares a word as inline.

Side effects
Modifies word

Definition
IN: words

GENERIC: make-inline ( word -- )


Methods
USING: macros words ;

M: macro make-inline cannot-be-inline ;


USING: generic.single words ;

M: single-generic make-inline cannot-be-inline ;


USING: kernel words ;

M: word make-inline
dup inline?
[ drop ]
[ [ t "inline" set-word-prop ] [ changed-effect ] bi ] if ;