- return yyresult_;
-}
-
-void
-yy::]b4_parser_class_name[::yylex_ ()
-{
- YYCDEBUG << "Reading a token: ";
- yylooka_ = ]b4_c_function_call([yylex], [int],
-[[YYSTYPE*], [&yylval]][]dnl
-b4_location_if([, [[location*], [&yylloc]]])dnl
-m4_ifdef([b4_lex_param], [, ]b4_lex_param))[;
-}
-
-// Generate an error message, and invoke error.
-void
-yy::]b4_parser_class_name[::yyreport_syntax_error_ ()
-{
- /* If not already recovering from an error, report this error. */
- if (!yyerrstatus_)
- {
- ++yynerrs_;
- std::string message;
-#if YYERROR_VERBOSE
- yyn_ = yypact_[yystate_];
- if (yypact_ninf_ < yyn_ && yyn_ < yylast_)
- {
- /* Start YYX at -YYN if negative to avoid negative indexes in
- YYCHECK. */
- int yyxbegin = yyn_ < 0 ? -yyn_ : 0;
-
- /* Stay within bounds of both yycheck and yytname. */
- int yychecklim = yylast_ - yyn_;
- int yyxend = yychecklim < yyntokens_ ? yychecklim : yyntokens_;
- int count = 0;
- for (int x = yyxbegin; x < yyxend; ++x)
- if (yycheck_[x + yyn_] == x && x != yyterror_)
- ++count;
-
- // FIXME: This method of building the message is not compatible
- // with internationalization. It should work like yacc.c does it.
- // That is, first build a string that looks like this:
- // "syntax error, unexpected %s or %s or %s"
- // Then, invoke YY_ on this string.
- // Finally, use the string as a format to output
- // yytname_[yyilooka_], etc.
- // Until this gets fixed, this message appears in English only.
- message = "syntax error, unexpected ";
- message += yytnamerr_ (yytname_[yyilooka_]);
- if (count < 5)
- {
- count = 0;
- for (int x = yyxbegin; x < yyxend; ++x)
- if (yycheck_[x + yyn_] == x && x != yyterror_)
- {
- message += (!count++) ? ", expecting " : " or ";
- message += yytnamerr_ (yytname_[x]);
- }
- }
- }
- else
-#endif
- message = YY_("syntax error");
- error (yylloc, message);
- }
-}
-
-
-/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
- STATE-NUM. */
-const ]b4_int_type(b4_pact_ninf, b4_pact_ninf) yy::b4_parser_class_name::yypact_ninf_ = b4_pact_ninf[;
-const ]b4_int_type_for([b4_pact])[
-yy::]b4_parser_class_name[::yypact_[] =
-{
- ]b4_pact[
-};
-
-/* YYDEFACT[S] -- default rule to reduce with in state S when YYTABLE
- doesn't specify something else to do. Zero means the default is an
- error. */
-const ]b4_int_type_for([b4_defact])[
-yy::]b4_parser_class_name[::yydefact_[] =
-{
- ]b4_defact[
-};
-
-/* YYPGOTO[NTERM-NUM]. */
-const ]b4_int_type_for([b4_pgoto])[
-yy::]b4_parser_class_name[::yypgoto_[] =
-{
- ]b4_pgoto[
-};
-
-/* YYDEFGOTO[NTERM-NUM]. */
-const ]b4_int_type_for([b4_defgoto])[
-yy::]b4_parser_class_name[::yydefgoto_[] =
-{
- ]b4_defgoto[
-};
-
-/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
- positive, shift that token. If negative, reduce the rule which
- number is the opposite. If zero, do what YYDEFACT says. */
-const ]b4_int_type(b4_table_ninf, b4_table_ninf) yy::b4_parser_class_name::yytable_ninf_ = b4_table_ninf[;
-const ]b4_int_type_for([b4_table])[
-yy::]b4_parser_class_name[::yytable_[] =
-{
- ]b4_table[
-};
-
-/* YYCHECK. */
-const ]b4_int_type_for([b4_check])[
-yy::]b4_parser_class_name[::yycheck_[] =
-{
- ]b4_check[
-};
-
-/* STOS_[STATE-NUM] -- The (internal number of the) accessing
- symbol of state STATE-NUM. */
-const ]b4_int_type_for([b4_stos])[
-yy::]b4_parser_class_name[::yystos_[] =
-{
- ]b4_stos[
-};