(self)
| 2218 | return 'map' |
| 2219 | |
| 2220 | def children(self): |
| 2221 | for field in self.schema.fields: |
| 2222 | yield ("name", field.name.string_literal()) |
| 2223 | yield ("type", field.type) |
| 2224 | |
| 2225 | def to_string(self): |
| 2226 | num_fields = len(self.schema.fields) |
nothing calls this directly
no test coverage detected