unknown-macro-input? ( object -- ? ) (original) (raw)
unknown-macro-input? ( object -- ? )
Vocabulary
stack-checker.errors
Inputs and outputs
object | an object |
---|---|
? | a boolean |
Word description
Tests if the object is an instance of the unknown-macro-input class.
Definition
USING: classes.tuple.private ;
: unknown-macro-input? ( object -- ? )
\ unknown-macro-input 9 tuple-instance? ;