Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-07 | JSON: Templatize the JSON serialization code | Andreas Kling | |
This makes it possible to use something other than a StringBuilder for serialization (and to produce something other than a String.) :^) | |||
2019-06-18 | AK: Rename JsonObject::to_string() and pals to serialized(). | Andreas Kling | |
And the variant that serializes into a StringBuilder is called serialize(). | |||
2019-06-17 | AK: Use a single StringBuilder throughout JSON serialization. | Andreas Kling | |
2019-06-17 | AK: Add some classes for JSON encoding. | Andreas Kling | |
This patch adds JsonValue, JsonObject and JsonArray. You can use them to build up a JsonObject and then serialize it to a string via to_string(). This patch only implements encoding, no decoding yet. |