mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-14 15:13:07 +00:00
DeprecatedFlyString relies heavily on DeprecatedString's StringImpl, so let's rename it to A) match the name of DeprecatedString, B) write a new FlyString class that is tied to String.
30 lines
697 B
C++
30 lines
697 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/DeprecatedFlyString.h>
|
|
#include <LibWeb/DOM/CharacterData.h>
|
|
|
|
namespace Web::DOM {
|
|
|
|
class Comment final : public CharacterData {
|
|
WEB_PLATFORM_OBJECT(Comment, CharacterData);
|
|
|
|
public:
|
|
static JS::NonnullGCPtr<Comment> construct_impl(JS::Realm&, DeprecatedString const& data);
|
|
virtual ~Comment() override = default;
|
|
|
|
virtual DeprecatedFlyString node_name() const override { return "#comment"; }
|
|
|
|
private:
|
|
Comment(Document&, DeprecatedString const&);
|
|
};
|
|
|
|
template<>
|
|
inline bool Node::fast_is<Comment>() const { return is_comment(); }
|
|
|
|
}
|