LibWeb: Make HTMLTokens non-copyable

This commit is contained in:
Max Wipfli 2021-07-15 22:32:36 +02:00 committed by Ali Mohammad Pur
parent 7eb294df0d
commit 8a4c44db8c
Notes: sideshowbarker 2024-07-18 08:52:28 +09:00

View File

@ -19,6 +19,7 @@ namespace Web::HTML {
class HTMLTokenizer;
class HTMLToken {
AK_MAKE_NONCOPYABLE(HTMLToken);
public:
enum class Type {
@ -79,6 +80,9 @@ public:
{
}
HTMLToken(HTMLToken&& other) = default;
HTMLToken& operator=(HTMLToken&& other) = default;
bool is_doctype() const { return m_type == Type::DOCTYPE; }
bool is_start_tag() const { return m_type == Type::StartTag; }
bool is_end_tag() const { return m_type == Type::EndTag; }