(self, sum, name, depth)
| 246 | self.visit(type.value, type.name, depth) |
| 247 | |
| 248 | def visitSum(self, sum, name, depth): |
| 249 | if is_simple(sum): |
| 250 | return |
| 251 | self.emit_sequence_constructor(name, depth) |
| 252 | |
| 253 | def emit_sequence_constructor(self, name,depth): |
| 254 | ctype = get_c_type(name) |
nothing calls this directly
no test coverage detected