1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:17:34 +00:00

LibIDL: Begin parsing IDL namespaces

For example, the CSS namespace is defined via IDL, but we currently have
a manual implementation.
This commit is contained in:
Timothy Flynn 2023-03-15 09:55:49 -04:00 committed by Tim Flynn
parent 406a7ea577
commit 61ecdbca54
3 changed files with 33 additions and 1 deletions

View file

@ -40,6 +40,7 @@ private:
HashMap<DeprecatedString, DeprecatedString> parse_extended_attributes();
void parse_attribute(HashMap<DeprecatedString, DeprecatedString>& extended_attributes, Interface&);
void parse_interface(Interface&);
void parse_namespace(Interface&);
void parse_non_interface_entities(bool allow_interface, Interface&);
void parse_enumeration(Interface&);
void parse_typedef(Interface&);