(type, chunk)
| 589 | } |
| 590 | |
| 591 | #decodeVerbatimString(type, chunk) { |
| 592 | return this.#continueDecodeVerbatimStringLength( |
| 593 | this.#decodeUnsingedNumber.bind(this, 0), |
| 594 | type, |
| 595 | chunk |
| 596 | ); |
| 597 | } |
| 598 | |
| 599 | #continueDecodeVerbatimStringLength(lengthCb, type, chunk) { |
| 600 | const length = lengthCb(chunk); |
no test coverage detected