MCPcopy Create free account
hub / github.com/CodeSentryAI/lockbud / CallGraphNode

Enum CallGraphNode

src/analysis/callgraph/mod.rs:47–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45
46/// The CallGraph node wrapping an Instance.
47/// WithBody means the Instance owns body.
48#[derive(Debug, PartialEq, Eq)]
49pub enum CallGraphNode<'tcx> {
50 WithBody(Instance<'tcx>),
51 WithoutBody(Instance<'tcx>),
52}
53

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected