| 327 | } |
| 328 | |
| 329 | json etf_parser::decode_array(uint32_t length) { |
| 330 | json array = json::array(); |
| 331 | for(uint32_t i = 0; i < length; ++i) { |
| 332 | array.emplace_back(inner_parse()); |
| 333 | } |
| 334 | return array; |
| 335 | } |
| 336 | |
| 337 | json etf_parser::decode_list() { |
| 338 | const uint32_t length = read_32_bits(); |
nothing calls this directly
no outgoing calls
no test coverage detected