(lengthCb, typeMapping, chunk)
| 752 | } |
| 753 | |
| 754 | #continueDecodeArrayLength(lengthCb, typeMapping, chunk) { |
| 755 | return this.#decodeArrayWithLength( |
| 756 | lengthCb(chunk), |
| 757 | typeMapping, |
| 758 | chunk |
| 759 | ); |
| 760 | } |
| 761 | |
| 762 | #decodeArrayItems(array, filled, typeMapping, chunk) { |
| 763 | for (let i = filled; i < array.length; i++) { |
nothing calls this directly
no test coverage detected