(name)
| 10577 | return null; |
| 10578 | } |
| 10579 | hasAttribute(name) { |
| 10580 | return this._attributes.find((attr) => attr.name === name); |
| 10581 | } |
| 10582 | getAttribute(arg) { |
| 10583 | const slot = Number.isInteger(arg) ? arg : this.findAttributeSlot(arg); |
| 10584 | return this._attributes[slot].type; |
no test coverage detected