()
| 41 | return null; |
| 42 | } |
| 43 | _update() { |
| 44 | if (this._version < this._element._version) { |
| 45 | const snapshot = this._query(); |
| 46 | for (let i = 0; i < snapshot.length; i++) { |
| 47 | this._list[i] = snapshot[i]; |
| 48 | } |
| 49 | this._list.length = snapshot.length; |
| 50 | this._version = this._element._version; |
| 51 | } |
| 52 | } |
| 53 | get [idlUtils.supportedPropertyIndices]() { |
| 54 | this._update(); |
| 55 | return this._list.keys(); |
no outgoing calls
no test coverage detected