ast-set? ( object -- ? )


Vocabulary
peg.javascript.ast

Inputs and outputs
objectan object
?a boolean


Word description
Tests if the object is an instance of the ast-set class.

Definition
USING: classes.tuple.private kernel slots.private ;

IN: peg.javascript.ast

: ast-set? ( object -- ? )
dup tuple? [ layout-of 7 slot \ ast-set eq? ] [ drop f ] if
;