| 52 | |
| 53 | #[derive(Debug)] |
| 54 | pub enum FoldInner { |
| 55 | Fold(Fold), |
| 56 | Node((CodeId, NodeView)), |
| 57 | } |
| 58 | |
| 59 | impl FoldInner { |
| 60 | pub fn is_in_view(&self, metadata: &Metadata, blocks: &BTreeMap<CodeId, Node>) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected