| 674 | } |
| 675 | |
| 676 | bool TJsonValue::GetString(TString* value) const { |
| 677 | if (Type != JSON_STRING) { |
| 678 | return false; |
| 679 | } |
| 680 | *value = Value.String; |
| 681 | return true; |
| 682 | } |
| 683 | |
| 684 | bool TJsonValue::GetMap(TJsonValue::TMapType* value) const { |
| 685 | if (Type != JSON_MAP) { |
no outgoing calls
no test coverage detected