mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 04:22:28 +00:00
AK: Rename JsonObject::to_string() and pals to serialized().
And the variant that serializes into a StringBuilder is called serialize().
This commit is contained in:
parent
15fa4f1c55
commit
aa3df518e7
Notes:
sideshowbarker
2024-07-19 13:33:10 +09:00
Author: https://github.com/awesomekling
Commit: aa3df518e7
7 changed files with 20 additions and 20 deletions
|
@ -19,8 +19,8 @@ public:
|
|||
void clear() { m_values.clear(); }
|
||||
void append(const JsonValue& value) { m_values.append(value); }
|
||||
|
||||
String to_string() const;
|
||||
void to_string(StringBuilder&) const;
|
||||
String serialized() const;
|
||||
void serialize(StringBuilder&) const;
|
||||
|
||||
private:
|
||||
Vector<JsonValue> m_values;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue