1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 22:15:07 +00:00

LibWeb: Move/rename StyleBlockRule to Parser::Block

This commit is contained in:
Sam Atkins 2022-04-12 14:08:26 +01:00 committed by Andreas Kling
parent 624df40e20
commit 3e49036edf
11 changed files with 36 additions and 39 deletions

View file

@ -0,0 +1,31 @@
/*
* Copyright (c) 2020-2021, the SerenityOS developers.
* Copyright (c) 2021-2022, Sam Atkins <atkinssj@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/CSS/Parser/Block.h>
namespace Web::CSS::Parser {
Block::Block() = default;
Block::Block(Token token, Vector<ComponentValue>&& values)
: m_token(move(token))
, m_values(move(values))
{
}
Block::~Block() = default;
String Block::to_string() const
{
StringBuilder builder;
builder.append(m_token.bracket_string());
builder.join(" ", m_values);
builder.append(m_token.bracket_mirror_string());
return builder.to_string();
}
}