1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:17:35 +00:00

LibCpp: Support parsing enum classes

This commit is contained in:
Itamar 2021-06-20 21:51:53 +03:00 committed by Ali Mohammad Pur
parent 5ee753ffaa
commit c1ee0c1685
2 changed files with 31 additions and 1 deletions

View file

@ -505,6 +505,12 @@ public:
{
}
enum class Type {
RegularEnum,
EnumClass
};
Type type { Type::RegularEnum };
Vector<StringView> m_entries;
};