patterns: Added padding expressions in bitfields.

Closes #326
This commit is contained in:
WerWolv
2021-10-14 20:28:13 +02:00
parent a4c5d0bb62
commit 3e5d6cf88c
2 changed files with 9 additions and 5 deletions

View File

@@ -986,8 +986,9 @@ namespace hex::pl {
if (MATCHES(sequence(IDENTIFIER, OPERATOR_INHERIT))) {
auto name = getValue<Token::Identifier>(-2).get();
bitfieldNode->addEntry(name, parseMathematicalExpression());
}
else if (MATCHES(sequence(SEPARATOR_ENDOFPROGRAM)))
} else if (MATCHES(sequence(VALUETYPE_PADDING, OPERATOR_INHERIT))) {
bitfieldNode->addEntry("padding", parseMathematicalExpression());
} else if (MATCHES(sequence(SEPARATOR_ENDOFPROGRAM)))
throwParseError("unexpected end of program", -2);
else
throwParseError("invalid bitfield member", 0);