// Copyright 2016 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use super::*; impl<'graph, G: ControlFlowGraph> ControlFlowGraph for &'graph G { type Node = G::Node; fn num_nodes(&self) -> usize { (**self).num_nodes() } fn start_node(&self) -> Self::Node { (**self).start_node() } fn predecessors<'iter>(&'iter self, node: Self::Node) -> >::Iter { (**self).predecessors(node) } fn successors<'iter>(&'iter self, node: Self::Node) -> >::Iter { (**self).successors(node) } } impl<'iter, 'graph, G: ControlFlowGraph> GraphPredecessors<'iter> for &'graph G { type Item = G::Node; type Iter = >::Iter; } impl<'iter, 'graph, G: ControlFlowGraph> GraphSuccessors<'iter> for &'graph G { type Item = G::Node; type Iter = >::Iter; }