(self, shape, visitor, stack)
| 604 | stack.pop() |
| 605 | |
| 606 | def _walk_structure(self, shape, visitor, stack): |
| 607 | self._do_shape_visit(shape, visitor) |
| 608 | for _, member_shape in shape.members.items(): |
| 609 | self._walk(member_shape, visitor, stack) |
| 610 | |
| 611 | def _walk_list(self, shape, visitor, stack): |
| 612 | self._do_shape_visit(shape, visitor) |
nothing calls this directly
no test coverage detected