2 Copyright (C) 2008-2012 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 %code requires // *.hh
30 typedef std::list<std::string> strings_type;
40 // Prototype of the yylex function providing subsequent tokens.
41 static yy::parser::symbol_type yylex ();
43 // Printing a list of strings.
44 // Koening look up will look into std, since that's an std::list.
48 operator<< (std::ostream& o, const strings_type& s)
50 std::copy (s.begin (), s.end (),
51 std::ostream_iterator<strings_type::value_type> (o, "\n"));
56 // Conversion to string.
60 string_cast (const T& t)
68 %token <::std::string> TEXT;
70 %printer { debug_stream () << $$; }
71 <int> <::std::string> <::std::list<std::string>>;
74 %type <::std::string> item;
75 %type <::std::list<std::string>> list;
80 list { std::cout << $1 << std::endl; }
84 /* nothing */ { /* Generates an empty string list */ }
85 | list item { std::swap ($$, $1); $$.push_back ($2); }
89 TEXT { std::swap ($$, $1); }
90 | NUMBER { $$ = string_cast ($1); }
94 // The yylex function providing subsequent tokens:
95 // TEXT "I have three numbers for you:"
99 // TEXT " and that's all!"
103 yy::parser::symbol_type
106 static int stage = -1;
108 yy::parser::location_type loc(0, stage + 1, stage + 1);
112 return yy::parser::make_TEXT ("I have three numbers for you.", loc);
116 return yy::parser::make_NUMBER (stage, loc);
118 return yy::parser::make_TEXT ("And that's all!", loc);
120 return yy::parser::make_END_OF_FILE (loc);
124 // Mandatory error function
126 yy::parser::error (const yy::parser::location_type& loc, const std::string& msg)
128 std::cerr << loc << ": " << msg << std::endl;
135 p.set_debug_level (!!getenv ("YYDEBUG"));