| 41 | } |
| 42 | |
| 43 | JSONValue JSONParser::Parse(){ |
| 44 | JSONValue v = JSONValue(); |
| 45 | |
| 46 | if(sv.empty()){ return v; } |
| 47 | EatWhitespace(); |
| 48 | |
| 49 | return ParseObject(); |
| 50 | } |
| 51 | |
| 52 | std::string JSONParser::ParseString(){ |
| 53 | if(!EatOne('"')){ |
no test coverage detected