Function: treemacs-is-node-file-or-dir?--inliner

treemacs-is-node-file-or-dir?--inliner is a function defined in treemacs-core-utils.el.

Signature

(treemacs-is-node-file-or-dir?--inliner INLINE--FORM NODE)

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-core-utils.el
;; Could not find source code, showing raw function object.
#[(inline--form node)
  ((ignore inline--form)
   (catch 'inline--just-use
     (let*
	 ((exp node)
	  (node
	   (if (macroexp-copyable-p exp) exp (make-symbol "node")))
	  (body
	   (list 'memq (list 'treemacs-button-get 'node :state)
		 (list 'quote
		       (list 'file-node-open 'file-node-closed
			     'dir-node-open 'dir-node-closed)))))
       (if (eq node exp) body
	 (macroexp-let* (list (list node exp)) body)))))
  (t)]