(self, name, type_str='')
| 991 | self.field = None |
| 992 | |
| 993 | def add_child(self, name, type_str=''): |
| 994 | for child in self.children: |
| 995 | if child.name == name and child.type_str == type_str: |
| 996 | return child |
| 997 | child = _SchemaNode(name, type_str) |
| 998 | self.children.append(child) |
| 999 | return child |
| 1000 | |
| 1001 | def get_field(self): |
| 1002 |
no test coverage detected