Function: cider-who-calls
cider-who-calls is an autoloaded, interactive and byte-compiled
function defined in cider-xref-tree.el.
Signature
(cider-who-calls &optional SYMBOL)
Documentation
Browse the callers of SYMBOL as an interactive tree.
Expand a node to reveal its own callers and walk the call graph upward. Uses
the runtime fn-refs op, so it covers loaded Clojure-on-the-JVM code.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-xref-tree.el
;;;###autoload
(defun cider-who-calls (&optional symbol)
"Browse the callers of SYMBOL as an interactive tree.
Expand a node to reveal its own callers and walk the call graph upward. Uses
the runtime `fn-refs' op, so it covers loaded Clojure-on-the-JVM code."
(interactive)
(cider-xref-tree--browse symbol #'cider-sync-request:fn-refs
"*cider-who-calls*" "Callers of %s" "Who calls"))