Function sway_ir::analysis::call_graph::callee_first_order

source ยท
pub fn callee_first_order(cg: &CallGraph) -> Vec<Function>
Expand description

Given a call graph, return reverse topological sort (post order traversal), i.e., If A calls B, then B occurs before A in the returned Vec.