(self, prod, name)
| 57 | field.type, name)) |
| 58 | |
| 59 | def visitProduct(self, prod, name): |
| 60 | # type: (asdl.Product, str) -> None |
| 61 | self.product_types[name] = prod |
| 62 | for f in prod.fields: |
| 63 | self.visit(f, name) |
| 64 | |
| 65 | |
| 66 | SingularType = Union[asdl.Constructor, asdl.Product] |
nothing calls this directly
no outgoing calls
no test coverage detected