(length, typeMapping, chunk)
| 741 | } |
| 742 | |
| 743 | #decodeArrayWithLength(length, typeMapping, chunk) { |
| 744 | return typeof length === 'function' ? |
| 745 | this.#continueDecodeArrayLength.bind(this, length, typeMapping) : |
| 746 | this.#decodeArrayItems( |
| 747 | new Array(length), |
| 748 | 0, |
| 749 | typeMapping, |
| 750 | chunk |
| 751 | ); |
| 752 | } |
| 753 | |
| 754 | #continueDecodeArrayLength(lengthCb, typeMapping, chunk) { |
| 755 | return this.#decodeArrayWithLength( |
no test coverage detected