| 214 | } |
| 215 | |
| 216 | inline static Status MakeStream(string_view src_str, |
| 217 | std::shared_ptr<io::InputStream>* out) { |
| 218 | auto src = std::make_shared<Buffer>(src_str); |
| 219 | *out = std::make_shared<io::BufferReader>(src); |
| 220 | return Status::OK(); |
| 221 | } |
| 222 | |
| 223 | // scalar values (numbers and strings) are parsed into a |
| 224 | // dictionary<index:int32, value:string>. This can be decoded for ease of comparison |
no test coverage detected