mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-22 02:33:03 +00:00
%printer: support both yyo and yyoutput.
lalr1.cc used to support yyo, but not yyoutput. Support both,
but document only yyoutput (at least until there is some consensus
on this).
* data/c.m4 (yy_symbol_value_print): Also support yyo.
* data/glr.cc (yy_symbol_value_print_): Support both yyo and yyoutput.
* data/lalr1.cc: Also support yyoutput.
* doc/bison.texinfo: Explicitly use yyoutput in the examples.
* examples/mfcalc/mfcalc.test: Test the -p option.
(cherry picked from commit c50263271d)
Conflicts:
data/c.m4
data/lalr1.cc
doc/bison.texinfo
etc/Makefile.am
This commit is contained in:
@@ -456,6 +456,8 @@ m4_define_default([b4_yy_symbol_print_generate],
|
|||||||
b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl
|
b4_locations_if([, [[YYLTYPE const * const yylocationp], [yylocationp]]])[]dnl
|
||||||
m4_ifset([b4_parse_param], [, b4_parse_param]))[
|
m4_ifset([b4_parse_param], [, b4_parse_param]))[
|
||||||
{
|
{
|
||||||
|
FILE *yyo = yyoutput;
|
||||||
|
YYUSE (yyo);
|
||||||
if (!yyvaluep)
|
if (!yyvaluep)
|
||||||
return;
|
return;
|
||||||
]b4_locations_if([ YYUSE (yylocationp);
|
]b4_locations_if([ YYUSE (yylocationp);
|
||||||
|
|||||||
@@ -151,9 +151,11 @@ m4_pushdef([b4_parse_param], m4_defn([b4_parse_param_orig]))dnl
|
|||||||
]b4_parser_class_name[::yy_symbol_value_print_ (int yytype,
|
]b4_parser_class_name[::yy_symbol_value_print_ (int yytype,
|
||||||
const semantic_type* yyvaluep, const location_type* yylocationp)
|
const semantic_type* yyvaluep, const location_type* yylocationp)
|
||||||
{
|
{
|
||||||
/* Pacify ``unused variable'' warnings. */
|
|
||||||
YYUSE (yyvaluep);
|
|
||||||
YYUSE (yylocationp);
|
YYUSE (yylocationp);
|
||||||
|
YYUSE (yyvaluep);
|
||||||
|
std::ostream& yyoutput = debug_stream ();
|
||||||
|
std::ostream& yyo = yyoutput;
|
||||||
|
YYUSE (yyo);
|
||||||
switch (yytype)
|
switch (yytype)
|
||||||
{
|
{
|
||||||
]m4_map([b4_symbol_actions], m4_defn([b4_symbol_printers]))dnl
|
]m4_map([b4_symbol_actions], m4_defn([b4_symbol_printers]))dnl
|
||||||
|
|||||||
@@ -446,6 +446,9 @@ do { \
|
|||||||
{
|
{
|
||||||
YYUSE (yylocationp);
|
YYUSE (yylocationp);
|
||||||
YYUSE (yyvaluep);
|
YYUSE (yyvaluep);
|
||||||
|
std::ostream& yyo = debug_stream ();
|
||||||
|
std::ostream& yyoutput = yyo;
|
||||||
|
YYUSE (yyoutput);
|
||||||
switch (yytype)
|
switch (yytype)
|
||||||
{
|
{
|
||||||
]m4_map([b4_symbol_actions], m4_defn([b4_symbol_printers]))dnl
|
]m4_map([b4_symbol_actions], m4_defn([b4_symbol_printers]))dnl
|
||||||
|
|||||||
@@ -3079,14 +3079,14 @@ type:
|
|||||||
%code requires @{ #include "type1.h" @}
|
%code requires @{ #include "type1.h" @}
|
||||||
%union @{ type1 field1; @}
|
%union @{ type1 field1; @}
|
||||||
%destructor @{ type1_free ($$); @} <field1>
|
%destructor @{ type1_free ($$); @} <field1>
|
||||||
%printer @{ type1_print ($$); @} <field1>
|
%printer @{ type1_print (yyoutput, $$); @} <field1>
|
||||||
@end group
|
@end group
|
||||||
|
|
||||||
@group
|
@group
|
||||||
%code requires @{ #include "type2.h" @}
|
%code requires @{ #include "type2.h" @}
|
||||||
%union @{ type2 field2; @}
|
%union @{ type2 field2; @}
|
||||||
%destructor @{ type2_free ($$); @} <field2>
|
%destructor @{ type2_free ($$); @} <field2>
|
||||||
%printer @{ type2_print ($$); @} <field2>
|
%printer @{ type2_print (yyoutput, $$); @} <field2>
|
||||||
@end group
|
@end group
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
@@ -9665,10 +9665,10 @@ To enable memory deallocation during error recovery, use
|
|||||||
@c FIXME: Document %printer, and mention that it takes a braced-code operand.
|
@c FIXME: Document %printer, and mention that it takes a braced-code operand.
|
||||||
@comment file: calc++-parser.yy
|
@comment file: calc++-parser.yy
|
||||||
@example
|
@example
|
||||||
%printer @{ debug_stream () << *$$; @} "identifier"
|
%printer @{ yyoutput << *$$; @} "identifier"
|
||||||
%destructor @{ delete $$; @} "identifier"
|
%destructor @{ delete $$; @} "identifier"
|
||||||
|
|
||||||
%printer @{ debug_stream () << $$; @} <ival>
|
%printer @{ yyoutput << $$; @} <ival>
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
@noindent
|
@noindent
|
||||||
|
|||||||
Reference in New Issue
Block a user