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

LibWeb: Generate EventTarget bindings from IDL :^)

This commit is contained in:
Andreas Kling 2020-06-21 12:27:41 +02:00
parent a014b2930e
commit d724a12732
6 changed files with 29 additions and 134 deletions

View file

@ -38,6 +38,7 @@ class Wrapper
: public JS::Object
, public Weakable<Wrapper> {
public:
virtual bool is_event_target_wrapper() const { return false; }
virtual bool is_node_wrapper() const { return false; }
virtual bool is_document_wrapper() const { return false; }
virtual bool is_element_wrapper() const { return false; }