Function: treemacs--on-collapse-of-node-with-children--inliner
treemacs--on-collapse-of-node-with-children--inliner is a function
defined in treemacs-dom.el.
Signature
(treemacs--on-collapse-of-node-with-children--inliner INLINE--FORM DOM-NODE)
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-dom.el
;; Could not find source code, showing raw function object.
#[(inline--form dom-node)
((ignore inline--form)
(catch 'inline--just-use
(let*
((exp dom-node)
(dom-node
(if (macroexp-copyable-p exp) exp (make-symbol "dom-node")))
(body
(list 'progn
(list 'treemacs-walk-dom-exclusive dom-node
(list 'lambda (list 'it)
(list
'treemacs-dom-node->remove-from-dom! 'it)
(list 'setf
(list 'treemacs-dom-node->children
'it)
nil)))
(list 'setf
(list 'treemacs-dom-node->children dom-node)
nil))))
(if (eq dom-node exp) body
(macroexp-let* (list (list dom-node exp)) body)))))
(t)]