(e3, t3)
| 2379 | return this._array[this._getCyclicIndex(e3)]; |
| 2380 | } |
| 2381 | set(e3, t3) { |
| 2382 | this._array[this._getCyclicIndex(e3)] = t3; |
| 2383 | } |
| 2384 | push(e3) { |
| 2385 | this._array[this._getCyclicIndex(this._length)] = e3, this._length === this._maxLength ? (this._startIndex = ++this._startIndex % this._maxLength, this.onTrimEmitter.fire(1)) : this._length++; |
| 2386 | } |
no test coverage detected