| 86 | } |
| 87 | |
| 88 | Status JSONTypeError(const char* expected_type, rj::Type json_type) { |
| 89 | return Status::Invalid("Expected ", expected_type, " or null, got JSON type ", |
| 90 | JsonTypeName(json_type)); |
| 91 | } |
| 92 | |
| 93 | class JSONConverter { |
| 94 | public: |
no test coverage detected