(self, shape, visitor, stack)
| 609 | self._walk(member_shape, visitor, stack) |
| 610 | |
| 611 | def _walk_list(self, shape, visitor, stack): |
| 612 | self._do_shape_visit(shape, visitor) |
| 613 | self._walk(shape.member, visitor, stack) |
| 614 | |
| 615 | def _walk_map(self, shape, visitor, stack): |
| 616 | self._do_shape_visit(shape, visitor) |
nothing calls this directly
no test coverage detected