(array, filled, itemCb, typeMapping, chunk)
| 788 | } |
| 789 | |
| 790 | #continueDecodeArrayItems(array, filled, itemCb, typeMapping, chunk) { |
| 791 | const item = itemCb(chunk); |
| 792 | if (typeof item === 'function') { |
| 793 | return this.#continueDecodeArrayItems.bind( |
| 794 | this, |
| 795 | array, |
| 796 | filled, |
| 797 | item, |
| 798 | typeMapping |
| 799 | ); |
| 800 | } |
| 801 | |
| 802 | array[filled++] = item; |
| 803 | |
| 804 | return this.#decodeArrayItems(array, filled, typeMapping, chunk); |
| 805 | } |
| 806 | |
| 807 | #decodeSet(typeMapping, chunk) { |
| 808 | const length = this.#decodeUnsingedNumber(0, chunk); |
nothing calls this directly
no test coverage detected