(self)
| 248 | return ('enumeration', 'attribute', 'attributeGroup') |
| 249 | |
| 250 | def dependencies(self): |
| 251 | deps = [] |
| 252 | midx = None |
| 253 | if self.ref is not None: |
| 254 | query = TypeQuery(self.ref) |
| 255 | super = query.execute(self.schema) |
| 256 | if super is None: |
| 257 | log.debug(self.schema) |
| 258 | raise TypeNotFound(self.ref) |
| 259 | if not super.builtin(): |
| 260 | deps.append(super) |
| 261 | midx = 0 |
| 262 | return (midx, deps) |
| 263 | |
| 264 | def restriction(self): |
| 265 | return True |
nothing calls this directly
no test coverage detected