Function: parseedn-reduce-leaf
parseedn-reduce-leaf is a byte-compiled function defined in
parseedn.el.
Signature
(parseedn-reduce-leaf STACK TOKEN OPTIONS)
Documentation
Put in the STACK an elisp value representing TOKEN.
OPTIONS is an association list. See parseclj-parse for more information
on available options.
Source Code
;; Defined in ~/.emacs.d/elpa/parseedn-20231203.1909/parseedn.el
(defun parseedn-reduce-leaf (stack token _options)
"Put in the STACK an elisp value representing TOKEN.
OPTIONS is an association list. See `parseclj-parse' for more information
on available options."
(if (member (parseclj-lex-token-type token) (list :whitespace :comment))
stack
(cons (parseclj-lex--leaf-token-value token) stack)))