2 Copyright (C) 2008-2014 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/>.
21 %define api.token.constructor
22 %define api.value.type variant
26 %code requires // *.hh
30 typedef std::list<std::string> strings_type;
40 // Prototype of the yylex function providing subsequent tokens.
43 static parser::symbol_type yylex ();
46 // Printing a list of strings.
47 // Koening look up will look into std, since that's an std::list.
51 operator<< (std::ostream& o, const strings_type& ss)
53 o << "(" << &ss << ") {";
55 for (strings_type::const_iterator i = ss.begin(), end = ss.end();
65 // Conversion to string.
69 string_cast (const T& t)
77 %token <::std::string> TEXT;
79 %printer { yyoutput << $$; } <*>;
82 %type <::std::string> item;
83 %type <::std::list<std::string>> list;
88 list { std::cout << $1 << std::endl; }
92 /* nothing */ { /* Generates an empty string list */ }
93 | list item { std::swap ($$, $1); $$.push_back ($2); }
97 TEXT { std::swap ($$, $1); }
98 | NUMBER { $$ = string_cast ($1); }
104 // The yylex function providing subsequent tokens:
105 // TEXT "I have three numbers for you."
109 // TEXT "And that's all!"
116 static int stage = -1;
118 parser::location_type loc(0, stage + 1, stage + 1);
122 return parser::make_TEXT ("I have three numbers for you.", loc);
126 return parser::make_NUMBER (stage, loc);
128 return parser::make_TEXT ("And that's all!", loc);
130 return parser::make_END_OF_FILE (loc);
134 // Mandatory error function
136 parser::error (const parser::location_type& loc, const std::string& msg)
138 std::cerr << loc << ": " << msg << std::endl;
146 p.set_debug_level (!!getenv ("YYDEBUG"));