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

@ -95,7 +95,7 @@ describe("building parse and lex tables", []() {
it("accepts when the start symbol is reduced", [&]() {
AssertThat(parse_state(1).actions, Equals(unordered_map<string, parse_actions>({
{ ParseTable::END_OF_INPUT, parse_actions({ ParseAction::Accept() }) }
{ "__END__", parse_actions({ ParseAction::Accept() }) }
})));
});