79829973

Date: 2025-11-25 16:35:57
Score: 0.5
Natty:
Report link

This is not possible using Clojure itself as it doesn't execute function calls until runtime.

However, a given call graph can be determined using static analysis with Clojure-lsp, which supports call heirarchy, showing both incoming and ou-going calls from a given function. If you're willing to write some code yourself, you can also use clj-kondo's analysis functionality to introspect var usages with specified metadata.

Reasons:
  • No code block (0.5):
Posted by: Noah Bogart