Backend change to allow for reduce rules with the same name
This commit is contained in:
parent
bf008e7043
commit
e1208101b9
|
@ -59,16 +59,27 @@ namespace backends {
|
|||
topLevel["symbols"] = std::move(symbols);
|
||||
|
||||
std::vector<templ::TemplateContext> rules;
|
||||
std::set<std::string> rulenames;
|
||||
for (std::size_t i = 0; i < config.grammar.rules.size(); i++) {
|
||||
std::map<const std::string, templ::TemplateContext> r;
|
||||
r["index"] = templ::make_string(std::to_string(i));
|
||||
r["rhs_length"] = templ::make_string(std::to_string(config.grammar.rules[i]->tail.size()));
|
||||
if (false /* the rule has a name */)
|
||||
if (false /* the rule has a name */) {
|
||||
r["rname"] = templ::make_string(""); //The name
|
||||
rulenames.insert(""); //The name
|
||||
} else {
|
||||
rulenames.insert(std::to_string(i));
|
||||
}
|
||||
rules.push_back(templ::make_map(std::move(r)));
|
||||
}
|
||||
topLevel["rules"] = templ::make_array(std::move(rules));
|
||||
|
||||
std::vector<templ::TemplateContext> rulenamesT;
|
||||
for (auto& s : rulenames) {
|
||||
rulenamesT.emplace_back(templ::make_map({{"rname", templ::make_string(s)}}));
|
||||
}
|
||||
topLevel["rulenames"] = templ::make_array(std::move(rulenamesT));
|
||||
|
||||
std::set<std::string> terminals = config.grammar.terminals;
|
||||
terminals.insert(util::EOF_PLACEHOLDER);
|
||||
std::vector<templ::TemplateContext> states(table.act.size());
|
||||
|
|
|
@ -51,10 +51,9 @@ class {{name}} {
|
|||
/**
|
||||
* Apply a reduction (a grammar rule in reverse)
|
||||
*/
|
||||
{{#rules}}
|
||||
{{#rname}}virtual Value reduce_{{rname}}(std::deque<Token> subparts) = 0;{{/rname}}
|
||||
{{^rname}}virtual Value reduce_{{index}}(std::deque<Token> subparts) = 0;{{/rname}}
|
||||
{{/rules}}
|
||||
{{#rulenames}}
|
||||
virtual Value reduce_{{rname}}(std::deque<Token> subparts) = 0;
|
||||
{{/rulenames}}
|
||||
|
||||
private:
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue