1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:27:45 +00:00

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
parent 7440b632fe
commit 9da8c78133
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