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

LibWeb: Make serializing CSS Parser types infallible

This commit is contained in:
Sam Atkins 2023-08-22 13:00:28 +01:00 committed by Sam Atkins
parent 846c719e49
commit ccfe197e5a
12 changed files with 57 additions and 57 deletions

View file

@ -144,8 +144,8 @@ public:
StringView bracket_string() const;
StringView bracket_mirror_string() const;
ErrorOr<String> to_string() const;
ErrorOr<String> to_debug_string() const;
String to_string() const;
String to_debug_string() const;
String const& representation() const { return m_representation; }
Position const& start_position() const { return m_start_position; }