(s, depth=depth)
| 280 | |
| 281 | def sum_with_constructors(self, sum, name, depth): |
| 282 | def emit(s, depth=depth): |
| 283 | self.emit(s % sys._getframe(1).f_locals, depth) |
| 284 | enum = [] |
| 285 | for i in range(len(sum.types)): |
| 286 | type = sum.types[i] |
no outgoing calls
no test coverage detected