-#if USE_LEX_SYMBOL
- return yy::parser::make_TEXT ("A string.", yy::location());
-#elif defined ONE_STAGE_BUILD
- yylval->build(std::string("A string."));
- *yylloc = yy::location ();
- return token::TEXT;
-#elif USE_VARIANTS
- yylval->build<std::string>() = std::string("A string.");
- *yylloc = yy::location ();
- return token::TEXT;