ZoneCodeGenerator: Fix conditions only being able to have one conditionStatement

This commit is contained in:
Jan 2019-10-02 18:42:58 +02:00
parent ac1d426fb2
commit 0ee689532b

View File

@ -50,7 +50,7 @@ namespace ZoneCodeGenerator.Parsing.CommandFile.Tests
new MatcherWithTag(OperandTag),
new MatcherGroupOptional(new MatcherGroupAnd(
new MatcherWithTag(OperationTag),
new MatcherWithTag(OperandTag)
new MatcherWithTag(ConditionStatementTag)
))
)
).WithTag(ConditionStatementTag);