diff options
author | Linus Groh <mail@linusgroh.de> | 2022-09-21 17:40:08 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-09-21 21:12:24 +0100 |
commit | 38b3ce8f0335a4b6694e3d4ca39491dac00bf7f0 (patch) | |
tree | 4e2533cdb8ec850f37f06f6b05e2224f675abd61 /Userland/Libraries/LibIDL | |
parent | fb2e1c46117ec802903255f04f9745c4b1be52cc (diff) | |
download | serenity-38b3ce8f0335a4b6694e3d4ca39491dac00bf7f0.zip |
LibIDL+LibWeb: Remove stale references to "wrapper class" concept
There are no wrappers for the platform object types anymore :^)
Diffstat (limited to 'Userland/Libraries/LibIDL')
-rw-r--r-- | Userland/Libraries/LibIDL/IDLParser.cpp | 3 | ||||
-rw-r--r-- | Userland/Libraries/LibIDL/Types.h | 2 |
2 files changed, 0 insertions, 5 deletions
diff --git a/Userland/Libraries/LibIDL/IDLParser.cpp b/Userland/Libraries/LibIDL/IDLParser.cpp index 1d5fbb2248..4b89822e46 100644 --- a/Userland/Libraries/LibIDL/IDLParser.cpp +++ b/Userland/Libraries/LibIDL/IDLParser.cpp @@ -570,9 +570,6 @@ void Parser::parse_interface(Interface& interface) parse_function(extended_attributes, interface); } - interface.wrapper_class = interface.name; - - interface.wrapper_base_class = String::formatted("{}Wrapper", interface.parent_name.is_empty() ? String::empty() : interface.parent_name); interface.constructor_class = String::formatted("{}Constructor", interface.name); interface.prototype_class = String::formatted("{}Prototype", interface.name); interface.prototype_base_class = String::formatted("{}Prototype", interface.parent_name.is_empty() ? "Object" : interface.parent_name); diff --git a/Userland/Libraries/LibIDL/Types.h b/Userland/Libraries/LibIDL/Types.h index 133f077f82..e90af91074 100644 --- a/Userland/Libraries/LibIDL/Types.h +++ b/Userland/Libraries/LibIDL/Types.h @@ -287,8 +287,6 @@ public: HashMap<String, CallbackFunction> callback_functions; // Added for convenience after parsing - String wrapper_class; - String wrapper_base_class; String fully_qualified_name; String constructor_class; String prototype_class; |