| 365 | void Long(int64_t x) { s += NumToString(x); } |
| 366 | void ULong(uint64_t x) { s += NumToString(x); } |
| 367 | void Float(float x) { s += NumToString(x); } |
| 368 | void Double(double x) { s += NumToString(x); } |
| 369 | void String(const struct String *str) { |
| 370 | EscapeString(str->c_str(), str->size(), &s, true, false); |
no test coverage detected