Added handling of static class fields

This commit is contained in:
Bartek Kryza
2021-02-25 20:43:13 +01:00
parent e3ffeba732
commit dfa39a0433
6 changed files with 24 additions and 9 deletions

View File

@@ -135,6 +135,9 @@ public:
// Process members
//
for (const auto &m : c.members) {
if (m.is_static)
ostr << "{static} ";
ostr << to_string(m.scope) << m.type << " " << m.name << std::endl;
}