Function: parseclj-lex-leaf-token-p
parseclj-lex-leaf-token-p is a byte-compiled function defined in
parseclj-lex.el.
Signature
(parseclj-lex-leaf-token-p TOKEN)
Documentation
Return t if the given AST TOKEN is a leaf node.
Source Code
;; Defined in ~/.emacs.d/elpa/parseclj-20231203.1905/parseclj-lex.el
(defun parseclj-lex-leaf-token-p (token)
"Return t if the given AST TOKEN is a leaf node."
(member (parseclj-lex-token-type token) parseclj-lex--leaf-tokens))