(lengthCb, typeMapping, chunk)
| 901 | } |
| 902 | |
| 903 | #continueDecodeMapLength(lengthCb, typeMapping, chunk) { |
| 904 | const length = lengthCb(chunk); |
| 905 | return typeof length === 'function' ? |
| 906 | this.#continueDecodeMapLength.bind(this, length, typeMapping) : |
| 907 | this.#decodeMapItems(length, typeMapping, chunk); |
| 908 | } |
| 909 | |
| 910 | #decodeMapItems(length, typeMapping, chunk) { |
| 911 | switch (typeMapping[RESP_TYPES.MAP]) { |
nothing calls this directly
no test coverage detected