blob: a1d7b333fa83627aa9ecbe3422396138dacd6f4f (
plain)
1
2
3
4
5
6
|
Token() = default;
Token(const std::string& s) { type = s; } // Assign type via "=" from string
start symbol implicitly from bnf
validate bnf: no empty types or values, or empty target lists
|