Remove unnecessary public START and END constants

This commit is contained in:
Max Brunsfeld 2014-01-25 20:47:08 -08:00
parent 5eb5b61c14
commit 3ca2e126be
7 changed files with 8 additions and 13 deletions

View file

@ -33,7 +33,6 @@ describe("preparing a grammar", []() {
{ "1", rules::seq({
rules::character('a'),
rules::character('b') }) },
{ "__END__", character('\0') },
})));
});
@ -53,7 +52,6 @@ describe("preparing a grammar", []() {
{ "rule2", seq({
character('a'),
character('b') }) },
{ "__END__", character('\0') },
})));
});
});