bad-macro-input? ( object -- ? ) (original) (raw)

bad-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 bad-macro-input class.

Definition

USING: classes.tuple.private ;

IN: stack-checker.errors

: bad-macro-input? ( object -- ? )
\ bad-macro-input 9 tuple-instance? ;