One more change for the fix on error reporting
This commit is contained in:
parent
fb4e394b36
commit
0db5f3bc9a
|
@ -64,11 +64,14 @@ namespace backends {
|
||||||
std::string lastTerminal = "";
|
std::string lastTerminal = "";
|
||||||
std::vector<templ::TemplateContext> symbols;
|
std::vector<templ::TemplateContext> symbols;
|
||||||
for (auto& s : terminals) {
|
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")}}));
|
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)}}));
|
symbols.push_back(templ::make_map({{"symbol", templ::make_string("T_" + s)}}));
|
||||||
lastTerminal = s;
|
lastTerminal = s;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
topLevel["last_terminal"] = templ::make_string("T_" + lastTerminal);
|
topLevel["last_terminal"] = templ::make_string("T_" + lastTerminal);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue