| 486 | } |
| 487 | |
| 488 | bool ReadJsonFastTree(TStringBuf in, TJsonValue* out, bool throwOnError, bool notClosedBracketIsError) { |
| 489 | TParserCallbacks cb(*out, throwOnError, notClosedBracketIsError); |
| 490 | |
| 491 | return ReadJsonFast(in, &cb); |
| 492 | } |
| 493 | |
| 494 | TJsonValue ReadJsonFastTree(TStringBuf in, bool notClosedBracketIsError) { |
| 495 | TJsonValue value; |
no outgoing calls