1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 07:55:07 +00:00

LibJS+LibWeb: Stop generating is_foo_wrapper() for JS DOM wrappers

This commit is contained in:
Andreas Kling 2021-01-01 18:06:38 +01:00
parent f48751a739
commit d2613403e0
3 changed files with 2 additions and 4 deletions

View file

@ -112,7 +112,6 @@ public:
virtual bool is_array() const { return false; }
virtual bool is_function() const { return false; }
virtual bool is_typed_array() const { return false; }
virtual bool is_node_wrapper() const { return false; }
virtual const char* class_name() const override { return "Object"; }
virtual void visit_edges(Cell::Visitor&) override;