| 513 | } |
| 514 | |
| 515 | String JSON::escapeString (StringRef s) |
| 516 | { |
| 517 | MemoryOutputStream mo; |
| 518 | JSONFormatter::writeString (mo, s.text); |
| 519 | return mo.toString(); |
| 520 | } |
| 521 | |
| 522 | Result JSON::parseQuotedString (String::CharPointerType& t, var& result) |
| 523 | { |