(typeMapping, chunk)
| 989 | } |
| 990 | |
| 991 | #decodeMapKey(typeMapping, chunk) { |
| 992 | const type = chunk[this.#cursor]; |
| 993 | return ++this.#cursor === chunk.length ? |
| 994 | this.#decodeMapKeyValue.bind(this, type, typeMapping) : |
| 995 | this.#decodeMapKeyValue(type, typeMapping, chunk); |
| 996 | } |
| 997 | |
| 998 | #decodeMapKeyValue(type, typeMapping, chunk) { |
| 999 | switch (type) { |
no test coverage detected