
This is a monster patch that turns all EventTargets into GC-allocated PlatformObjects. Their C++ wrapper classes are removed, and the LibJS garbage collector is now responsible for their lifetimes. There's a fair amount of hacks and band-aids in this patch, and we'll have a lot of cleanup to do after this.
32 lines
713 B
C++
32 lines
713 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/FlyString.h>
|
|
#include <LibWeb/DOM/CharacterData.h>
|
|
|
|
namespace Web::DOM {
|
|
|
|
class Comment final : public CharacterData {
|
|
WEB_PLATFORM_OBJECT(Comment, CharacterData);
|
|
|
|
public:
|
|
static JS::NonnullGCPtr<Comment> create_with_global_object(HTML::Window&, String const& data);
|
|
virtual ~Comment() override = default;
|
|
|
|
virtual FlyString node_name() const override { return "#comment"; }
|
|
|
|
private:
|
|
explicit Comment(Document&, String const&);
|
|
};
|
|
|
|
template<>
|
|
inline bool Node::fast_is<Comment>() const { return is_comment(); }
|
|
|
|
}
|
|
|
|
WRAPPER_HACK(Comment, Web::DOM)
|