1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:07:45 +00:00

LibIDL+LibWeb: Remove stale references to "wrapper class" concept

There are no wrappers for the platform object types anymore :^)
This commit is contained in:
Linus Groh 2022-09-21 17:40:08 +01:00
parent fb2e1c4611
commit 38b3ce8f03
3 changed files with 7 additions and 21 deletions

View file

@ -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);