Add missing semicolons in flatten_grammar test

This commit is contained in:
Max Brunsfeld 2017-07-06 12:48:50 -07:00
parent 31f827945a
commit cb652239f6

View file

@ -49,7 +49,7 @@ describe("flatten_grammar", []() {
{Symbol::non_terminal(6), 0, AssociativityNone},
{Symbol::non_terminal(7), 0, AssociativityNone},
})
})))
})));
});
it("uses the last assigned precedence", [&]() {
@ -67,7 +67,7 @@ describe("flatten_grammar", []() {
{Symbol::non_terminal(1), 101, AssociativityLeft},
{Symbol::non_terminal(2), 101, AssociativityLeft},
})
})))
})));
result = flatten_rule({
"test2",
@ -81,7 +81,7 @@ describe("flatten_grammar", []() {
Production({
{Symbol::non_terminal(1), 101, AssociativityLeft},
})
})))
})));
});
});