(&self)
| 90 | |
| 91 | impl<T> ConcreteTreeNode for ExprContext<T> { |
| 92 | fn children(&self) -> &[Self] { |
| 93 | &self.children |
| 94 | } |
| 95 | |
| 96 | fn take_children(mut self) -> (Self, Vec<Self>) { |
| 97 | let children = std::mem::take(&mut self.children); |
no outgoing calls
no test coverage detected