(&mut self, circle: &WtoCircle)
| 330 | } |
| 331 | |
| 332 | fn visit_circle(&mut self, circle: &WtoCircle) { |
| 333 | let head = circle.head(); |
| 334 | self.wto_nesting_map.insert(head, self.wto_nesting.clone()); |
| 335 | self.wto_nesting.push(head); |
| 336 | for comp in circle { |
| 337 | self.visit_component(&comp); |
| 338 | } |
| 339 | self.wto_nesting.pop(); |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | impl WtoNestingIterator { |
no test coverage detected