1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:18:12 +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

@ -26,7 +26,7 @@ ComponentValue::ComponentValue(NonnullRefPtr<Block> block)
ComponentValue::~ComponentValue() = default;
ErrorOr<String> ComponentValue::to_string() const
String ComponentValue::to_string() const
{
return m_value.visit(
[](Token const& token) { return token.to_string(); },
@ -34,17 +34,17 @@ ErrorOr<String> ComponentValue::to_string() const
[](NonnullRefPtr<Function> const& function) { return function->to_string(); });
}
ErrorOr<String> ComponentValue::to_debug_string() const
String ComponentValue::to_debug_string() const
{
return m_value.visit(
[](Token const& token) -> ErrorOr<String> {
return String::formatted("Token: {}", TRY(token.to_debug_string()));
[](Token const& token) {
return MUST(String::formatted("Token: {}", token.to_debug_string()));
},
[](NonnullRefPtr<Block> const& block) -> ErrorOr<String> {
return String::formatted("Block: {}", TRY(block->to_string()));
[](NonnullRefPtr<Block> const& block) {
return MUST(String::formatted("Block: {}", block->to_string()));
},
[](NonnullRefPtr<Function> const& function) -> ErrorOr<String> {
return String::formatted("Function: {}", TRY(function->to_string()));
[](NonnullRefPtr<Function> const& function) {
return MUST(String::formatted("Function: {}", function->to_string()));
});
}