(self, cons, name)
| 764 | self.visitConstructor(t, name) |
| 765 | |
| 766 | def visitConstructor(self, cons, name): |
| 767 | if cons.fields: |
| 768 | self.emit("static const char * const %s_fields[]={" % cons.name, 0) |
| 769 | for t in cons.fields: |
| 770 | self.emit('"%s",' % t.name, 1) |
| 771 | self.emit("};",0) |
| 772 | |
| 773 | |
| 774 | class AnnotationsVisitor(PickleVisitor): |