(self, mod)
| 26 | self.fieldless_constructors = {} # type: Dict[str, asdl.Constructor] |
| 27 | |
| 28 | def visitModule(self, mod): |
| 29 | # type: (asdl.Module) -> None |
| 30 | for dfn in mod.dfns: |
| 31 | self.visit(dfn) |
| 32 | |
| 33 | def visitType(self, type_): |
| 34 | # type: (asdl.Type) -> None |
nothing calls this directly
no outgoing calls
no test coverage detected