| 163 | } |
| 164 | |
| 165 | void TYsonString::Save(IOutputStream* s) const |
| 166 | { |
| 167 | EYsonType type = Type_; |
| 168 | if (*this) { |
| 169 | ::SaveMany(s, type, ToSharedRef()); |
| 170 | } else { |
| 171 | ::SaveMany(s, type, TString()); |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | void TYsonString::Load(IInputStream* s) |
| 176 | { |
nothing calls this directly
no test coverage detected