(self, sum, name, depth)
| 275 | self.visit(type.value, type.name, depth) |
| 276 | |
| 277 | def visitSum(self, sum, name, depth): |
| 278 | if not is_simple(sum): |
| 279 | self.sum_with_constructors(sum, name, depth) |
| 280 | |
| 281 | def sum_with_constructors(self, sum, name, depth): |
| 282 | def emit(s, depth=depth): |
nothing calls this directly
no test coverage detected