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