(definitions: DefinitionsElement, xmlns: IXmlNs)
| 532 | export class SimpleContentElement extends Element { |
| 533 | public readonly allowedChildren = buildAllowedChildren(['extension']); |
| 534 | public description(definitions: DefinitionsElement, xmlns: IXmlNs) { |
| 535 | for (const child of this.children) { |
| 536 | if (child instanceof ExtensionElement) { |
| 537 | return child.description(definitions, xmlns); |
| 538 | } |
| 539 | } |
| 540 | return {}; |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | export class SequenceElement extends Element { |
nothing calls this directly
no test coverage detected