| 49 | } |
| 50 | |
| 51 | void SerializeJsonValueAsYson(const NJson::TJsonValue& inputValue, NYson::TYsonWriter* ysonWriter) { |
| 52 | NYT::TYson2JsonCallbacksAdapter adapter(ysonWriter); |
| 53 | WriteJsonValue(inputValue, &adapter); |
| 54 | } |
| 55 | |
| 56 | void SerializeJsonValueAsYson(const NJson::TJsonValue& inputValue, IOutputStream* outputStream) { |
| 57 | NYson::TYsonWriter ysonWriter(outputStream, NYson::EYsonFormat::Binary, ::NYson::EYsonType::Node, false); |
no test coverage detected