1 2 3 4 5 6 7 8 9 10 | namespace AstlULMcalc {
extern const char* const yytname[] =
{
"$end", "error", "$undefined", "IDENT", "EOL", "DECIMAL_CONSTANT",
"LPAREN", "RPAREN", "ASTERISK", "MINUS", "PERCENT", "PLUS", "SLASH",
"ASSIGN", "$accept", "start", "calc", "statement_list", "statement",
"expression", "assignment", "exp", "term", "factor", "unary_minus",
"primary", "identifier", "integer", nullptr
};
}
|