bad-declaration-error? ( object -- ? ) (original) (raw)
bad-declaration-error? ( 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-declaration-error class.
Definition
USING: classes.tuple.private ;
: bad-declaration-error? ( object -- ? )
\ bad-declaration-error 9 tuple-instance? ;