| 57 | } |
| 58 | |
| 59 | static inline TString JsonQuote(const TString& s) { |
| 60 | TString quoted = s; |
| 61 | JsonEscape(quoted); |
| 62 | return "\"" + quoted + "\""; // do not use .Quote() here, it performs escaping! |
| 63 | } |
| 64 | |
| 65 | |
| 66 | /// Simplifed JSON map encoder for generic types |
no test coverage detected