Function: cider-who-is-called
cider-who-is-called is an autoloaded, interactive and byte-compiled
function defined in cider-xref-tree.el.
Signature
(cider-who-is-called &optional SYMBOL)
Documentation
Browse the callees of SYMBOL as an interactive tree.
Expand a node to reveal what it calls in turn and walk the call graph downward.
Uses the runtime fn-deps 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-is-called (&optional symbol)
"Browse the callees of SYMBOL as an interactive tree.
Expand a node to reveal what it calls in turn and walk the call graph downward.
Uses the runtime `fn-deps' op, so it covers loaded Clojure-on-the-JVM code."
(interactive)
(cider-xref-tree--browse symbol #'cider-sync-request:fn-deps
"*cider-who-is-called*" "Called by %s" "What is called by"))