From 0db5f3bc9afe9550ed4fad66a3284ef530180aef Mon Sep 17 00:00:00 2001 From: Robin Jadoul Date: Sun, 22 Jan 2017 15:38:30 +0100 Subject: [PATCH] One more change for the fix on error reporting --- include/Parsodus/backends/cppLR.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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);