AK: Add a try variant of StringBuilder::append_escaped_for_json

This will allow us to make a fallible version of the JSON serializers.
This commit is contained in:
Idan Horowitz 2022-02-24 19:15:31 +02:00 committed by Andreas Kling
commit 9da8c78133
Notes: sideshowbarker 2024-07-17 18:10:37 +09:00
2 changed files with 14 additions and 7 deletions

View file

@ -35,6 +35,7 @@ public:
return vformat(*this, fmtstr.view(), variadic_format_params);
}
ErrorOr<void> try_append(char const*, size_t);
ErrorOr<void> try_append_escaped_for_json(StringView);
void append(StringView);
#ifndef KERNEL