(typeMapping, chunk)
| 673 | } |
| 674 | |
| 675 | #decodeNestedType(typeMapping, chunk) { |
| 676 | const type = chunk[this.#cursor]; |
| 677 | return ++this.#cursor === chunk.length ? |
| 678 | this.#decodeNestedTypeValue.bind(this, type, typeMapping) : |
| 679 | this.#decodeNestedTypeValue(type, typeMapping, chunk); |
| 680 | } |
| 681 | |
| 682 | #decodeNestedTypeValue(type, typeMapping, chunk) { |
| 683 | switch (type) { |
no test coverage detected