(self, shape, visitor, stack)
| 613 | self._walk(shape.member, visitor, stack) |
| 614 | |
| 615 | def _walk_map(self, shape, visitor, stack): |
| 616 | self._do_shape_visit(shape, visitor) |
| 617 | self._walk(shape.value, visitor, stack) |
| 618 | |
| 619 | def _default_scalar_walk(self, shape, visitor, stack): |
| 620 | self._do_shape_visit(shape, visitor) |
nothing calls this directly
no test coverage detected