Home | History | Annotate | Download | only in tests

Lines Matching full:destructors

751 159;actions.at:751;Printers and Destructors;;
752 160;actions.at:752;Printers and Destructors with union;;
753 161;actions.at:754;Printers and Destructors: %defines %skeleton \"lalr1.cc\";c++;
754 162;actions.at:755;Printers and Destructors with union: %defines %skeleton \"lalr1.cc\";c++;
755 163;actions.at:757;Printers and Destructors: %glr-parser;;
756 164;actions.at:758;Printers and Destructors with union: %glr-parser;;
931 339;glr-regression.at:752;No users destructors if stack 0 deleted;;
933 341;glr-regression.at:883;Undesirable destructors if user action cuts parse;;
41105 "Printers and Destructors" " " 9
41743 "Printers and Destructors with union" " " 9
42384 "Printers and Destructors: %defines %skeleton \"lalr1.cc\"" "" 9
42957 "Printers and Destructors with union: %defines %skeleton \"lalr1.cc\"" "" 9
43533 "Printers and Destructors: %glr-parser" " " 9
44099 "Printers and Destructors with union: %glr-parser" "" 9
175451 "No users destructors if stack 0 deleted" " " 22
175476 static int destructors = 0;
175485 destructors += 1;
175491 ambig0 'a' { destructors += 2; USE ($2); }
175492 | ambig1 start { destructors += 1; }
175493 | ambig2 start { destructors += 1; }
175521 if (tokens != destructors)
175523 fprintf (stderr, "Tokens = %d, Destructors = %d\n", tokens, destructors);
175908 "Undesirable destructors if user action cuts parse" "" 22
175930 static int destructors = 0;
175937 %destructor { destructors += 1; } 'a'
175942 'a' %dprec 2 { USE ($1); destructors += 1; YYACCEPT; }
175943 | 'a' %dprec 1 { USE ($1); destructors += 1; YYACCEPT; }
175973 if (destructors != 1)
175975 fprintf (stderr, "Destructor calls: %d\n", destructors);