| 60 | |
| 61 | |
| 62 | void JSONEncoder::writeDateString(int64_t timestamp, bool asUTC) { |
| 63 | char str[kFormattedISO8601DateMaxSize]; |
| 64 | writeString(FormatISO8601Date(str, timestamp, asUTC)); |
| 65 | } |
| 66 | |
| 67 | |
| 68 | static inline bool canBeUnquotedJSON5Key(slice key) { |
nothing calls this directly
no test coverage detected