#dispatch? ( object -- ? )


Vocabulary
compiler.tree

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the #dispatch class.

Definition
USING: classes.tuple.private ;

IN: compiler.tree

: #dispatch? ( object -- ? ) \ #dispatch 13 tuple-instance? ;