/* * Copyright (c) 2020-2021, the SerenityOS developers. * Copyright (c) 2021-2022, Sam Atkins * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include namespace Web::CSS::Parser { ComponentValue::ComponentValue(Token token) : m_value(token) { } ComponentValue::ComponentValue(NonnullRefPtr function) : m_value(function) { } ComponentValue::ComponentValue(NonnullRefPtr block) : m_value(block) { } ComponentValue::~ComponentValue() = default; String ComponentValue::to_string() const { return m_value.visit( [](Token const& token) { return token.to_string(); }, [](NonnullRefPtr const& block) { return block->to_string(); }, [](NonnullRefPtr const& function) { return function->to_string(); }); } String ComponentValue::to_debug_string() const { return m_value.visit( [](Token const& token) { return String::formatted("Token: {}", token.to_debug_string()); }, [](NonnullRefPtr const& block) { return String::formatted("Block: {}", block->to_string()); }, [](NonnullRefPtr const& function) { return String::formatted("Function: {}", function->to_string()); }); } }