| 36 | } |
| 37 | |
| 38 | bool JsonCppDeserializer::deserialize(dap::boolean* v) const { |
| 39 | if (!json->isBool()) { |
| 40 | return false; |
| 41 | } |
| 42 | *v = json->asBool(); |
| 43 | return true; |
| 44 | } |
| 45 | |
| 46 | bool JsonCppDeserializer::deserialize(dap::integer* v) const { |
| 47 | if (!json->isInt64()) { |
nothing calls this directly
no test coverage detected