* examples/variant.yy: Define lex_symbol.
Adjust.
+2008-11-15 Akim Demaille <demaille@gostai.com>
+
+ Update variant.yy to newest interface.
+ * examples/variant.yy: Define lex_symbol.
+ Adjust.
+
2008-11-15 Akim Demaille <demaille@gostai.com>
Don't use locations in variant.yy.
2008-11-15 Akim Demaille <demaille@gostai.com>
Don't use locations in variant.yy.
-/* Test file for C++ parsers using variants.
- Based on an example by Michiel De Wilde <mdewilde.agilent@gmail.com>. */
%debug
%skeleton "lalr1.cc"
%defines
%define variant
%debug
%skeleton "lalr1.cc"
%defines
%define variant
#include <sstream>
// Prototype of the yylex function providing subsequent tokens.
#include <sstream>
// Prototype of the yylex function providing subsequent tokens.
- static yy::parser::token_type yylex(yy::parser::semantic_type* yylval);
+ static yy::parser::symbol_type yylex ();
// Printing a list of strings.
// Koening look up will look into std, since that's an std::list.
namespace std
{
std::ostream&
// Printing a list of strings.
// Koening look up will look into std, since that's an std::list.
namespace std
{
std::ostream&
- operator<<(std::ostream& o, const strings_type& s)
+ operator<< (std::ostream& o, const strings_type& s)
- std::copy(s.begin(), s.end(),
- std::ostream_iterator<strings_type::value_type>(o, "\n"));
+ std::copy (s.begin (), s.end (),
+ std::ostream_iterator<strings_type::value_type> (o, "\n"));
{
std::ostringstream o;
o << t;
{
std::ostringstream o;
o << t;
- list { std::cout << $1 << std::endl; }
+ list { std::cout << $1 << std::endl; }
-yy::parser::token_type
-yylex (yy::parser::semantic_type* yylval)
+yy::parser::symbol_type
+yylex ()
- static int stage = 0;
- yy::parser::token_type result;
-
- switch (stage)
+ static int stage = -1;
+ switch (++stage)
- yylval->build (std::string ("I have three numbers for you."));
- result = yy::parser::token::TEXT;
- break;
+ return yy::parser::make_TEXT ("I have three numbers for you.");
- yylval->build (stage);
- result = yy::parser::token::NUMBER;
- break;
+ return yy::parser::make_NUMBER (stage);
- yylval->build (std::string ("And that's all!"));
- result = yy::parser::token::TEXT;
- break;
+ return yy::parser::make_TEXT ("And that's all!");
- result = yy::parser::token::END_OF_FILE;
- break;
+ return yy::parser::make_END_OF_FILE ();
-
- stage++;
- return result;
}
// Mandatory error function
}
// Mandatory error function
-main (int argc, char *argv[])
{
yy::parser p;
p.set_debug_level (!!getenv ("YYDEBUG"));
{
yy::parser p;
p.set_debug_level (!!getenv ("YYDEBUG"));