diff --git a/include/Parsodus/backends/cppLR.h b/include/Parsodus/backends/cppLR.h index 7b0fc64..2c9cda2 100644 --- a/include/Parsodus/backends/cppLR.h +++ b/include/Parsodus/backends/cppLR.h @@ -64,11 +64,14 @@ namespace backends { std::string lastTerminal = ""; std::vector symbols; for (auto& s : terminals) { - if (s == util::EOF_PLACEHOLDER) + if (s == util::EOF_PLACEHOLDER) { symbols.push_back(templ::make_map({{"symbol", templ::make_string("T_EOF")}})); - else + lastTerminal = "EOF"; + } + else { symbols.push_back(templ::make_map({{"symbol", templ::make_string("T_" + s)}})); - lastTerminal = s; + lastTerminal = s; + } } topLevel["last_terminal"] = templ::make_string("T_" + lastTerminal);