Function: parseclj-lex-token-type

parseclj-lex-token-type is a byte-compiled function defined in parseclj-lex.el.

Signature

(parseclj-lex-token-type TOKEN)

Documentation

Get the type of TOKEN.

Source Code

;; Defined in ~/.emacs.d/elpa/parseclj-20231203.1905/parseclj-lex.el
(defun parseclj-lex-token-type (token)
  "Get the type of TOKEN."
  (and (consp token)
       (cdr (assq :token-type token))))