1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:47:44 +00:00

LibIDL: Parse extended attributes for constructors

This commit is contained in:
Srikavin Ramkumar 2023-03-23 03:48:44 -04:00 committed by Andreas Kling
parent da671a0c16
commit 6bc6ea8e97
3 changed files with 5 additions and 4 deletions

View file

@ -47,7 +47,7 @@ private:
void parse_interface_mixin(Interface&);
void parse_dictionary(Interface&);
void parse_callback_function(HashMap<DeprecatedString, DeprecatedString>& extended_attributes, Interface&);
void parse_constructor(Interface&);
void parse_constructor(HashMap<DeprecatedString, DeprecatedString>& extended_attributes, Interface&);
void parse_getter(HashMap<DeprecatedString, DeprecatedString>& extended_attributes, Interface&);
void parse_setter(HashMap<DeprecatedString, DeprecatedString>& extended_attributes, Interface&);
void parse_deleter(HashMap<DeprecatedString, DeprecatedString>& extended_attributes, Interface&);