| 321 | } |
| 322 | |
| 323 | json etf_parser::decode_integer() { |
| 324 | json j; |
| 325 | j = (int32_t)read_32_bits(); |
| 326 | return j; |
| 327 | } |
| 328 | |
| 329 | json etf_parser::decode_array(uint32_t length) { |
| 330 | json array = json::array(); |
nothing calls this directly
no outgoing calls
no test coverage detected