(self, shape, visitor, stack)
| 617 | self._walk(shape.value, visitor, stack) |
| 618 | |
| 619 | def _default_scalar_walk(self, shape, visitor, stack): |
| 620 | self._do_shape_visit(shape, visitor) |
| 621 | |
| 622 | def _do_shape_visit(self, shape, visitor): |
| 623 | visitor.visit_shape(shape) |
nothing calls this directly
no test coverage detected