summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibIDL/IDLParser.h
diff options
context:
space:
mode:
authorSrikavin Ramkumar <srikavinramkumar@gmail.com>2023-03-23 03:48:44 -0400
committerAndreas Kling <kling@serenityos.org>2023-03-23 13:37:40 +0100
commit6bc6ea8e97260b0c7b78f4a24020d015431228de (patch)
tree532b937a68a30ab0cfed35a2ad7c2fcb63552ede /Userland/Libraries/LibIDL/IDLParser.h
parentda671a0c1621273ae7d3ce837855edc45af94599 (diff)
downloadserenity-6bc6ea8e97260b0c7b78f4a24020d015431228de.zip
LibIDL: Parse extended attributes for constructors
Diffstat (limited to 'Userland/Libraries/LibIDL/IDLParser.h')
-rw-r--r--Userland/Libraries/LibIDL/IDLParser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibIDL/IDLParser.h b/Userland/Libraries/LibIDL/IDLParser.h
index 2acd5fd897..32b0cf9e85 100644
--- a/Userland/Libraries/LibIDL/IDLParser.h
+++ b/Userland/Libraries/LibIDL/IDLParser.h
@@ -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&);