(shift, keyHash, key, notSetValue)
| 476 | } |
| 477 | |
| 478 | get(shift, keyHash, key, notSetValue) { |
| 479 | const idx = this._positionOf(key, true); |
| 480 | return idx === -1 ? notSetValue : this.entries[idx][1]; |
| 481 | } |
| 482 | |
| 483 | update(ownerID, shift, keyHash, key, value, didChangeSize, didAlter) { |
| 484 | if (keyHash === undefined) { |
nothing calls this directly
no test coverage detected