(name)
| 10593 | return this._constants.has(name); |
| 10594 | } |
| 10595 | getProperty(name) { |
| 10596 | for (const prop of this._properties) { |
| 10597 | if (name === prop.name) { |
| 10598 | return prop; |
| 10599 | } |
| 10600 | } |
| 10601 | return null; |
| 10602 | } |
| 10603 | containedTypes() { |
| 10604 | return this._attributeTypes; |
| 10605 | } |