| 749 | } |
| 750 | |
| 751 | bool TJsonValue::GetString(TString* value) const { |
| 752 | if (Type != JSON_STRING) { |
| 753 | return false; |
| 754 | } |
| 755 | *value = Value.String; |
| 756 | return true; |
| 757 | } |
| 758 | |
| 759 | bool TJsonValue::GetMap(TJsonValue::TMapType* value) const { |
| 760 | if (Type != JSON_MAP) { |
no outgoing calls
no test coverage detected