summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/DOM/ParentNode.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-01-01 15:33:30 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-01 15:33:30 +0100
commit865f524d5b1257ec77b2d17b93ec777799b4c4ab (patch)
treed99597100b4f0f8670aa0edd8ebe67d5ae60a35a /Libraries/LibWeb/DOM/ParentNode.h
parent7c3b6b10e4230a24dbe44df4f942d63ee27cac89 (diff)
downloadserenity-865f524d5b1257ec77b2d17b93ec777799b4c4ab.zip
AK+LibGUI+LibWeb: Remove AK::TypeTraits in favor of RTTI-based helpers
Now that we have RTTI in userspace, we can do away with all this manual hackery and use dynamic_cast. We keep the is<T> and downcast<T> helpers since they still provide good readability improvements. Note that unlike dynamic_cast<T>, downcast<T> does not fail in a recoverable way, but will assert if the object being casted is not a T.
Diffstat (limited to 'Libraries/LibWeb/DOM/ParentNode.h')
-rw-r--r--Libraries/LibWeb/DOM/ParentNode.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Libraries/LibWeb/DOM/ParentNode.h b/Libraries/LibWeb/DOM/ParentNode.h
index cf8aa6ec86..0fa6e8f1fe 100644
--- a/Libraries/LibWeb/DOM/ParentNode.h
+++ b/Libraries/LibWeb/DOM/ParentNode.h
@@ -66,7 +66,3 @@ inline void ParentNode::for_each_child(Callback callback)
}
}
-
-AK_BEGIN_TYPE_TRAITS(Web::DOM::ParentNode)
-static bool is_type(const Web::DOM::Node& node) { return node.is_parent_node(); }
-AK_END_TYPE_TRAITS()