1 2 3 4 5 6 7 8 9 | namespace AstlULMcalc {
extern const char* const yytname[] =
{
"$end", "error", "$undefined", "CHAR_CONSTANT", "OCTAL_CONSTANT",
"DECIMAL_CONSTANT", "HEXADECIMAL_CONSTANT", "LPAREN", "RPAREN",
"ASTERISK", "MINUS", "PERCENT", "PLUS", "SLASH", "ASSIGN", "$accept",
"start", "expression", "exp", "term", "integer", nullptr
};
}
|