(arg)
| 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; |
| 10585 | } |
| 10586 | getAttributeName(slot) { |
| 10587 | return this._attributes[slot].name; |
| 10588 | } |
no test coverage detected