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

LibWeb: Add support for IDL callback functions

This commit is contained in:
Idan Horowitz 2022-03-30 23:35:13 +03:00 committed by Andreas Kling
parent 9ff79c9d54
commit 1c4f128fd1
4 changed files with 84 additions and 0 deletions

View file

@ -41,6 +41,7 @@ private:
void parse_typedef(Interface&);
void parse_interface_mixin(Interface&);
void parse_dictionary(Interface&);
void parse_callback_function(HashMap<String, String>& extended_attributes, Interface&);
void parse_constructor(Interface&);
void parse_getter(HashMap<String, String>& extended_attributes, Interface&);
void parse_setter(HashMap<String, String>& extended_attributes, Interface&);