Added new constructor for Rule + updated copy constructor Grammar
This commit is contained in:
parent
982d385ea3
commit
da4f74e2c3
|
@ -38,6 +38,8 @@ namespace pds {
|
|||
Rule() : head(""), tail(), name("") {}
|
||||
Rule(const std::string& h, const std::vector<std::string>& t) : head(h), tail(t), name("") {}
|
||||
Rule(const std::string& h, const std::vector<std::string>& t, const std::string& name) : head(h), tail(t), name(name) {}
|
||||
Rule(const std::string& h, const std::vector<std::string>& t, const std::string& name, std::pair<bool, std::pair<int, PrecedenceType>> precedence) :
|
||||
head(h), tail(t), name(name), precedence(precedence) {}
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -59,7 +61,7 @@ namespace pds {
|
|||
|
||||
Grammar(const Grammar& rhs)
|
||||
: start(rhs.start), variables(rhs.variables), terminals(rhs.terminals)
|
||||
, rules(rhs.rules), first(nullptr), follow(nullptr) {
|
||||
, rules(rhs.rules), precedence(rhs.precedence), first(nullptr), follow(nullptr) {
|
||||
if (rhs.first)
|
||||
first = std::make_unique<util::FirstSet>(*rhs.first);
|
||||
if (rhs.follow)
|
||||
|
|
Loading…
Reference in New Issue