(data)
| 8313 | return (this.top + 1 & kMask) === this.bottom; |
| 8314 | } |
| 8315 | push(data) { |
| 8316 | this.list[this.top] = data; |
| 8317 | this.top = this.top + 1 & kMask; |
| 8318 | } |
| 8319 | shift() { |
| 8320 | const nextItem = this.list[this.bottom]; |
| 8321 | if (nextItem === void 0) |
no test coverage detected