| 283 | } |
| 284 | |
| 285 | [[nodiscard]] bool TUnstrictConfig::ParseJson(const NJson::TJsonValue& json) { |
| 286 | Y_ABORT_UNLESS(ParseMemory("")); |
| 287 | return ParseJson(json, TString()); |
| 288 | } |
| 289 | |
| 290 | [[nodiscard]] bool TUnstrictConfig::ParseJson(const NJson::TJsonValue& json, const TString& path) { |
| 291 | if (json.IsNull()) { |
nothing calls this directly
no test coverage detected