(lengthCb, typeMapping, chunk)
| 818 | } |
| 819 | |
| 820 | #continueDecodeSetLength(lengthCb, typeMapping, chunk) { |
| 821 | const length = lengthCb(chunk); |
| 822 | return typeof length === 'function' ? |
| 823 | this.#continueDecodeSetLength.bind(this, length, typeMapping) : |
| 824 | this.#decodeSetItems(length, typeMapping, chunk); |
| 825 | } |
| 826 | |
| 827 | #decodeSetItems(length, typeMapping, chunk) { |
| 828 | return typeMapping[RESP_TYPES.SET] === Set ? |
nothing calls this directly
no test coverage detected