One more change for the fix on error reporting

This commit is contained in:
Robin Jadoul 2017-01-22 15:38:30 +01:00
parent fb4e394b36
commit 0db5f3bc9a
1 changed files with 6 additions and 3 deletions

View File

@ -64,12 +64,15 @@ namespace backends {
std::string lastTerminal = "";
std::vector<templ::TemplateContext> 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;
}
}
topLevel["last_terminal"] = templ::make_string("T_" + lastTerminal);