blob: 3574d61dd9d946fd47d2c7ac0beec0974393c4ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/*
* Copyright (c) 2020-2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/CSS/Parser/StyleDeclarationRule.h>
#include <LibWeb/CSS/Parser/StyleRule.h>
namespace Web::CSS {
class DeclarationOrAtRule {
friend class Parser;
public:
explicit DeclarationOrAtRule(RefPtr<StyleRule> at);
explicit DeclarationOrAtRule(StyleDeclarationRule declaration);
~DeclarationOrAtRule();
enum class DeclarationType {
At,
Declaration,
};
bool is_at_rule() const { return m_type == DeclarationType::At; }
bool is_declaration() const { return m_type == DeclarationType::Declaration; }
StyleRule const& at_rule() const
{
VERIFY(is_at_rule());
return *m_at;
}
StyleDeclarationRule const& declaration() const
{
VERIFY(is_declaration());
return m_declaration;
}
String to_string() const;
private:
DeclarationType m_type;
RefPtr<StyleRule> m_at;
StyleDeclarationRule m_declaration;
};
}
|