(self, product, name, depth)
| 262 | self.emit("", depth) |
| 263 | |
| 264 | def visitProduct(self, product, name, depth): |
| 265 | self.emit_sequence_constructor(name, depth) |
| 266 | |
| 267 | class StructVisitor(EmitVisitor): |
| 268 | """Visitor to generate typedefs for AST.""" |
nothing calls this directly
no test coverage detected