parsing-word? ( object -- ? )


Vocabulary
words

Inputs and outputs
objectan object
?a boolean


Word description
Tests if an object is a parsing word declared by SYNTAX:.

Notes
Outputs f if the object is not a word.

Definition
USING: kernel ;

IN: words

: parsing-word? ( object -- ? )
dup word? [ "parsing" word-prop ] [ drop f ] if ;