| 6321 | `----------*/ |
| 6322 | |
| 6323 | int |
| 6324 | yyparse (yyscan_t scanner) |
| 6325 | { |
| 6326 | /* Lookahead token kind. */ |
| 6327 | int yychar; |
| 6328 | |
| 6329 | |
| 6330 | /* The semantic value of the lookahead symbol. */ |
| 6331 | /* Default value used for initialization, for pacifying older GCCs |
| 6332 | or non-GCC compilers. */ |
| 6333 | YY_INITIAL_VALUE (static YYSTYPE yyval_default;) |
| 6334 | YYSTYPE yylval YY_INITIAL_VALUE (= yyval_default); |
| 6335 | |
| 6336 | /* Location data for the lookahead symbol. */ |
| 6337 | static YYLTYPE yyloc_default |
| 6338 | # if defined DAS_YYLTYPE_IS_TRIVIAL && DAS_YYLTYPE_IS_TRIVIAL |
| 6339 | = { 1, 1, 1, 1 } |
| 6340 | # endif |
| 6341 | ; |
| 6342 | YYLTYPE yylloc = yyloc_default; |
| 6343 | |
| 6344 | /* Number of syntax errors so far. */ |
| 6345 | int yynerrs = 0; |
| 6346 | |
| 6347 | yy_state_fast_t yystate = 0; |
| 6348 | /* Number of tokens to shift before error messages enabled. */ |
| 6349 | int yyerrstatus = 0; |
| 6350 | |
| 6351 | /* Refer to the stacks through separate pointers, to allow yyoverflow |
| 6352 | to reallocate them elsewhere. */ |
| 6353 | |
| 6354 | /* Their size. */ |
| 6355 | YYPTRDIFF_T yystacksize = YYINITDEPTH; |
| 6356 | |
| 6357 | /* The state stack: array, bottom, top. */ |
| 6358 | yy_state_t yyssa[YYINITDEPTH]; |
| 6359 | yy_state_t *yyss = yyssa; |
| 6360 | yy_state_t *yyssp = yyss; |
| 6361 | |
| 6362 | /* The semantic value stack: array, bottom, top. */ |
| 6363 | YYSTYPE yyvsa[YYINITDEPTH]; |
| 6364 | YYSTYPE *yyvs = yyvsa; |
| 6365 | YYSTYPE *yyvsp = yyvs; |
| 6366 | |
| 6367 | /* The location stack: array, bottom, top. */ |
| 6368 | YYLTYPE yylsa[YYINITDEPTH]; |
| 6369 | YYLTYPE *yyls = yylsa; |
| 6370 | YYLTYPE *yylsp = yyls; |
| 6371 | |
| 6372 | int yyn; |
| 6373 | /* The return value of yyparse. */ |
| 6374 | int yyresult; |
| 6375 | /* Lookahead symbol kind. */ |
| 6376 | yysymbol_kind_t yytoken = YYSYMBOL_YYEMPTY; |
| 6377 | /* The variables used to return semantic value and location from the |
| 6378 | action routines. */ |
| 6379 | YYSTYPE yyval; |
| 6380 | YYLTYPE yyloc; |
nothing calls this directly
no test coverage detected