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:
parent
5ee753ffaa
commit
c1ee0c1685
2 changed files with 31 additions and 1 deletions
|
@ -505,6 +505,12 @@ public:
|
|||
{
|
||||
}
|
||||
|
||||
enum class Type {
|
||||
RegularEnum,
|
||||
EnumClass
|
||||
};
|
||||
|
||||
Type type { Type::RegularEnum };
|
||||
Vector<StringView> m_entries;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue