.dependencies
/ .get_dependencies(...)
- What symbols does this symbol depend on?.usages
/ .usages(...)
- Where is this symbol used?A
depends on B
, then B
is used by A
. This relationship is tracked in both directions, allowing you to navigate the codebase from either perspective.
MyClass.dependencies
answers the question: “which symbols in the codebase does MyClass depend on?”
BaseClass.usages
answers the question: “which symbols in the codebase use BaseClass?”