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

Class PostDominators

src/analysis/postdom/mod.rs:230–233  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

228
229#[derive(Clone, Debug)]
230pub struct PostDominators<N: Idx> {
231 post_order_rank: IndexVec<N, usize>,
232 immediate_post_dominators: IndexVec<N, ExtNode<N>>,
233}
234
235impl<Node: Idx> PostDominators<Node> {
236 pub fn is_reachable(&self, node: Node) -> bool {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected