(self)
| 457 | 'group') |
| 458 | |
| 459 | def dependencies(self): |
| 460 | deps = [] |
| 461 | midx = None |
| 462 | if self.ref is not None: |
| 463 | query = TypeQuery(self.ref) |
| 464 | super = query.execute(self.schema) |
| 465 | if super is None: |
| 466 | log.debug(self.schema) |
| 467 | raise TypeNotFound(self.ref) |
| 468 | if not super.builtin(): |
| 469 | deps.append(super) |
| 470 | midx = 0 |
| 471 | return (midx, deps) |
| 472 | |
| 473 | def merge(self, other): |
| 474 | SchemaObject.merge(self, other) |
nothing calls this directly
no test coverage detected