==============================================================================
| 456 | |
| 457 | //============================================================================== |
| 458 | var JSON::parse (const String& text) |
| 459 | { |
| 460 | var result; |
| 461 | |
| 462 | if (parse (text, result)) |
| 463 | return result; |
| 464 | |
| 465 | return {}; |
| 466 | } |
| 467 | |
| 468 | var JSON::fromString (StringRef text) |
| 469 | { |
no test coverage detected