One more change for the fix on error reporting
This commit is contained in:
parent
fb4e394b36
commit
0db5f3bc9a
|
@ -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);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue