12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091 |
- #ifndef YY_YY_PARSER_H_INCLUDED
- # define YY_YY_PARSER_H_INCLUDED
- #line 24 "parser.yy" // lalr1.cc:392
- #include <string>
- #include <eval/token.h>
- #include <eval/eval_context_decl.h>
- #include <boost/lexical_cast.hpp>
- using namespace isc::dhcp;
- using namespace isc::eval;
- #line 54 "parser.h" // lalr1.cc:392
- # include <cassert>
- # include <cstdlib> // std::abort
- # include <iostream>
- # include <stdexcept>
- # include <string>
- # include <vector>
- # include "stack.hh"
- # include "location.hh"
- #include <typeinfo>
- #ifndef YYASSERT
- # include <cassert>
- # define YYASSERT assert
- #endif
- #ifndef YY_ATTRIBUTE
- # if (defined __GNUC__ \
- && (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \
- || defined __SUNPRO_C && 0x5110 <= __SUNPRO_C
- # define YY_ATTRIBUTE(Spec) __attribute__(Spec)
- # else
- # define YY_ATTRIBUTE(Spec) /* empty */
- # endif
- #endif
- #ifndef YY_ATTRIBUTE_PURE
- # define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__))
- #endif
- #ifndef YY_ATTRIBUTE_UNUSED
- # define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__))
- #endif
- #if !defined _Noreturn \
- && (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112)
- # if defined _MSC_VER && 1200 <= _MSC_VER
- # define _Noreturn __declspec (noreturn)
- # else
- # define _Noreturn YY_ATTRIBUTE ((__noreturn__))
- # endif
- #endif
- /* Suppress unused-variable warnings by "using" E. */
- #if ! defined lint || defined __GNUC__
- # define YYUSE(E) ((void) (E))
- #else
- # define YYUSE(E) /* empty */
- #endif
- #if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__
- /* Suppress an incorrect diagnostic about yylval being uninitialized. */
- # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
- _Pragma ("GCC diagnostic push") \
- _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\
- _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
- # define YY_IGNORE_MAYBE_UNINITIALIZED_END \
- _Pragma ("GCC diagnostic pop")
- #else
- # define YY_INITIAL_VALUE(Value) Value
- #endif
- #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
- # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
- # define YY_IGNORE_MAYBE_UNINITIALIZED_END
- #endif
- #ifndef YY_INITIAL_VALUE
- # define YY_INITIAL_VALUE(Value) /* Nothing. */
- #endif
- /* Debug traces. */
- #ifndef YYDEBUG
- # define YYDEBUG 1
- #endif
- #line 21 "parser.yy" // lalr1.cc:392
- namespace isc { namespace eval {
- #line 131 "parser.h" // lalr1.cc:392
- /// A char[S] buffer to store and retrieve objects.
- ///
- /// Sort of a variant, but does not keep track of the nature
- /// of the stored data, since that knowledge is available
- /// via the current state.
- template <size_t S>
- struct variant
- {
-
- typedef variant<S> self_type;
-
- variant ()
- : yytypeid_ (YY_NULLPTR)
- {}
-
- template <typename T>
- variant (const T& t)
- : yytypeid_ (&typeid (T))
- {
- YYASSERT (sizeof (T) <= S);
- new (yyas_<T> ()) T (t);
- }
-
- ~variant ()
- {
- YYASSERT (!yytypeid_);
- }
-
- template <typename T>
- T&
- build ()
- {
- YYASSERT (!yytypeid_);
- YYASSERT (sizeof (T) <= S);
- yytypeid_ = & typeid (T);
- return *new (yyas_<T> ()) T;
- }
-
- template <typename T>
- T&
- build (const T& t)
- {
- YYASSERT (!yytypeid_);
- YYASSERT (sizeof (T) <= S);
- yytypeid_ = & typeid (T);
- return *new (yyas_<T> ()) T (t);
- }
-
- template <typename T>
- T&
- as ()
- {
- YYASSERT (*yytypeid_ == typeid (T));
- YYASSERT (sizeof (T) <= S);
- return *yyas_<T> ();
- }
-
- template <typename T>
- const T&
- as () const
- {
- YYASSERT (*yytypeid_ == typeid (T));
- YYASSERT (sizeof (T) <= S);
- return *yyas_<T> ();
- }
-
-
-
-
-
-
-
-
- template <typename T>
- void
- swap (self_type& other)
- {
- YYASSERT (yytypeid_);
- YYASSERT (*yytypeid_ == *other.yytypeid_);
- std::swap (as<T> (), other.as<T> ());
- }
-
-
-
- template <typename T>
- void
- move (self_type& other)
- {
- build<T> ();
- swap<T> (other);
- other.destroy<T> ();
- }
-
- template <typename T>
- void
- copy (const self_type& other)
- {
- build<T> (other.as<T> ());
- }
-
- template <typename T>
- void
- destroy ()
- {
- as<T> ().~T ();
- yytypeid_ = YY_NULLPTR;
- }
- private:
-
- self_type& operator=(const self_type&);
- variant (const self_type&);
-
- template <typename T>
- T*
- yyas_ ()
- {
- void *yyp = yybuffer_.yyraw;
- return static_cast<T*> (yyp);
- }
-
- template <typename T>
- const T*
- yyas_ () const
- {
- const void *yyp = yybuffer_.yyraw;
- return static_cast<const T*> (yyp);
- }
- union
- {
-
- long double yyalign_me;
-
- char yyraw[S];
- } yybuffer_;
-
- const std::type_info *yytypeid_;
- };
-
- class EvalParser
- {
- public:
- #ifndef YYSTYPE
-
- union union_type
- {
-
-
-
-
- char dummy1[sizeof(std::string)];
- };
-
- typedef variant<sizeof(union_type)> semantic_type;
- #else
- typedef YYSTYPE semantic_type;
- #endif
-
- typedef location location_type;
-
- struct syntax_error : std::runtime_error
- {
- syntax_error (const location_type& l, const std::string& m);
- location_type location;
- };
-
- struct token
- {
- enum yytokentype
- {
- TOKEN_END = 0,
- TOKEN_EQUAL = 258,
- TOKEN_OPTION = 259,
- TOKEN_SUBSTRING = 260,
- TOKEN_TEXT = 261,
- TOKEN_HEX = 262,
- TOKEN_ALL = 263,
- TOKEN_DOT = 264,
- TOKEN_COMA = 265,
- TOKEN_LPAREN = 266,
- TOKEN_RPAREN = 267,
- TOKEN_LBRACKET = 268,
- TOKEN_RBRACKET = 269,
- TOKEN_STRING = 270,
- TOKEN_INTEGER = 271,
- TOKEN_HEXSTRING = 272,
- TOKEN_TOKEN = 273
- };
- };
-
- typedef token::yytokentype token_type;
-
- typedef int symbol_number_type;
-
- enum { empty_symbol = -2 };
-
- typedef unsigned char token_number_type;
-
-
-
-
-
-
- template <typename Base>
- struct basic_symbol : Base
- {
-
- typedef Base super_type;
-
- basic_symbol ();
-
- basic_symbol (const basic_symbol& other);
-
- basic_symbol (typename Base::kind_type t, const location_type& l);
- basic_symbol (typename Base::kind_type t, const std::string v, const location_type& l);
-
- basic_symbol (typename Base::kind_type t,
- const semantic_type& v,
- const location_type& l);
-
- ~basic_symbol ();
-
- void clear ();
-
- bool empty () const;
-
- void move (basic_symbol& s);
-
- semantic_type value;
-
- location_type location;
- private:
-
- basic_symbol& operator= (const basic_symbol& other);
- };
-
- struct by_type
- {
-
- by_type ();
-
- by_type (const by_type& other);
-
- typedef token_type kind_type;
-
- by_type (kind_type t);
-
- void clear ();
-
- void move (by_type& that);
-
-
- symbol_number_type type_get () const;
-
- token_type token () const;
-
-
-
- int type;
- };
-
- typedef basic_symbol<by_type> symbol_type;
-
- static inline
- symbol_type
- make_END (const location_type& l);
- static inline
- symbol_type
- make_EQUAL (const location_type& l);
- static inline
- symbol_type
- make_OPTION (const location_type& l);
- static inline
- symbol_type
- make_SUBSTRING (const location_type& l);
- static inline
- symbol_type
- make_TEXT (const location_type& l);
- static inline
- symbol_type
- make_HEX (const location_type& l);
- static inline
- symbol_type
- make_ALL (const location_type& l);
- static inline
- symbol_type
- make_DOT (const location_type& l);
- static inline
- symbol_type
- make_COMA (const location_type& l);
- static inline
- symbol_type
- make_LPAREN (const location_type& l);
- static inline
- symbol_type
- make_RPAREN (const location_type& l);
- static inline
- symbol_type
- make_LBRACKET (const location_type& l);
- static inline
- symbol_type
- make_RBRACKET (const location_type& l);
- static inline
- symbol_type
- make_STRING (const std::string& v, const location_type& l);
- static inline
- symbol_type
- make_INTEGER (const std::string& v, const location_type& l);
- static inline
- symbol_type
- make_HEXSTRING (const std::string& v, const location_type& l);
- static inline
- symbol_type
- make_TOKEN (const std::string& v, const location_type& l);
-
- EvalParser (EvalContext& ctx_yyarg);
- virtual ~EvalParser ();
-
-
- virtual int parse ();
- #if YYDEBUG
-
- std::ostream& debug_stream () const YY_ATTRIBUTE_PURE;
-
- void set_debug_stream (std::ostream &);
-
- typedef int debug_level_type;
-
- debug_level_type debug_level () const YY_ATTRIBUTE_PURE;
-
- void set_debug_level (debug_level_type l);
- #endif
-
-
-
- virtual void error (const location_type& loc, const std::string& msg);
-
- void error (const syntax_error& err);
- private:
-
- EvalParser (const EvalParser&);
- EvalParser& operator= (const EvalParser&);
-
- typedef int state_type;
-
-
-
- virtual std::string yysyntax_error_ (state_type yystate,
- const symbol_type& yyla) const;
-
-
-
- state_type yy_lr_goto_state_ (state_type yystate, int yysym);
-
-
- static bool yy_pact_value_is_default_ (int yyvalue);
-
-
- static bool yy_table_value_is_error_ (int yyvalue);
- static const signed char yypact_ninf_;
- static const signed char yytable_ninf_;
-
- static token_number_type yytranslate_ (token_type t);
-
-
-
- static const signed char yypact_[];
-
-
-
- static const unsigned char yydefact_[];
-
- static const signed char yypgoto_[];
-
- static const signed char yydefgoto_[];
-
-
-
- static const unsigned char yytable_[];
- static const unsigned char yycheck_[];
-
-
- static const unsigned char yystos_[];
-
- static const unsigned char yyr1_[];
-
- static const unsigned char yyr2_[];
-
- static std::string yytnamerr_ (const char *n);
-
- static const char* const yytname_[];
- #if YYDEBUG
-
- static const unsigned char yyrline_[];
-
- virtual void yy_reduce_print_ (int r);
-
- virtual void yystack_print_ ();
-
- int yydebug_;
- std::ostream* yycdebug_;
-
-
-
- template <typename Base>
- void yy_print_ (std::ostream& yyo, const basic_symbol<Base>& yysym) const;
- #endif
-
-
-
-
- template <typename Base>
- void yy_destroy_ (const char* yymsg, basic_symbol<Base>& yysym) const;
- private:
-
- struct by_state
- {
-
- by_state ();
-
- typedef state_type kind_type;
-
- by_state (kind_type s);
-
- by_state (const by_state& other);
-
- void clear ();
-
- void move (by_state& that);
-
-
- symbol_number_type type_get () const;
-
- enum { empty_state = -1 };
-
-
- state_type state;
- };
-
- struct stack_symbol_type : basic_symbol<by_state>
- {
-
- typedef basic_symbol<by_state> super_type;
-
- stack_symbol_type ();
-
- stack_symbol_type (state_type s, symbol_type& sym);
-
- stack_symbol_type& operator= (const stack_symbol_type& that);
- };
-
- typedef stack<stack_symbol_type> stack_type;
-
- stack_type yystack_;
-
-
-
-
-
- void yypush_ (const char* m, stack_symbol_type& s);
-
-
-
-
-
-
- void yypush_ (const char* m, state_type s, symbol_type& sym);
-
- void yypop_ (unsigned int n = 1);
-
- enum
- {
- yyeof_ = 0,
- yylast_ = 21,
- yynnts_ = 6,
- yyfinal_ = 11,
- yyterror_ = 1,
- yyerrcode_ = 256,
- yyntokens_ = 19
- };
-
- EvalContext& ctx;
- };
-
- inline
- EvalParser::token_number_type
- EvalParser::yytranslate_ (token_type t)
- {
- static
- const token_number_type
- translate_table[] =
- {
- 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
- 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
- 15, 16, 17, 18
- };
- const unsigned int user_token_number_max_ = 273;
- const token_number_type undef_token_ = 2;
- if (static_cast<int>(t) <= yyeof_)
- return yyeof_;
- else if (static_cast<unsigned int> (t) <= user_token_number_max_)
- return translate_table[t];
- else
- return undef_token_;
- }
- inline
- EvalParser::syntax_error::syntax_error (const location_type& l, const std::string& m)
- : std::runtime_error (m)
- , location (l)
- {}
-
- template <typename Base>
- inline
- EvalParser::basic_symbol<Base>::basic_symbol ()
- : value ()
- {}
- template <typename Base>
- inline
- EvalParser::basic_symbol<Base>::basic_symbol (const basic_symbol& other)
- : Base (other)
- , value ()
- , location (other.location)
- {
- switch (other.type_get ())
- {
- case 15:
- case 16:
- case 17:
- case 18:
- value.copy< std::string > (other.value);
- break;
- default:
- break;
- }
- }
- template <typename Base>
- inline
- EvalParser::basic_symbol<Base>::basic_symbol (typename Base::kind_type t, const semantic_type& v, const location_type& l)
- : Base (t)
- , value ()
- , location (l)
- {
- (void) v;
- switch (this->type_get ())
- {
- case 15:
- case 16:
- case 17:
- case 18:
- value.copy< std::string > (v);
- break;
- default:
- break;
- }
- }
-
- template <typename Base>
- EvalParser::basic_symbol<Base>::basic_symbol (typename Base::kind_type t, const location_type& l)
- : Base (t)
- , value ()
- , location (l)
- {}
- template <typename Base>
- EvalParser::basic_symbol<Base>::basic_symbol (typename Base::kind_type t, const std::string v, const location_type& l)
- : Base (t)
- , value (v)
- , location (l)
- {}
- template <typename Base>
- inline
- EvalParser::basic_symbol<Base>::~basic_symbol ()
- {
- clear ();
- }
- template <typename Base>
- inline
- void
- EvalParser::basic_symbol<Base>::clear ()
- {
-
- symbol_number_type yytype = this->type_get ();
- basic_symbol<Base>& yysym = *this;
- (void) yysym;
- switch (yytype)
- {
- default:
- break;
- }
-
- switch (yytype)
- {
- case 15:
- case 16:
- case 17:
- case 18:
- value.template destroy< std::string > ();
- break;
- default:
- break;
- }
- Base::clear ();
- }
- template <typename Base>
- inline
- bool
- EvalParser::basic_symbol<Base>::empty () const
- {
- return Base::type_get () == empty_symbol;
- }
- template <typename Base>
- inline
- void
- EvalParser::basic_symbol<Base>::move (basic_symbol& s)
- {
- super_type::move(s);
- switch (this->type_get ())
- {
- case 15:
- case 16:
- case 17:
- case 18:
- value.move< std::string > (s.value);
- break;
- default:
- break;
- }
- location = s.location;
- }
-
- inline
- EvalParser::by_type::by_type ()
- : type (empty_symbol)
- {}
- inline
- EvalParser::by_type::by_type (const by_type& other)
- : type (other.type)
- {}
- inline
- EvalParser::by_type::by_type (token_type t)
- : type (yytranslate_ (t))
- {}
- inline
- void
- EvalParser::by_type::clear ()
- {
- type = empty_symbol;
- }
- inline
- void
- EvalParser::by_type::move (by_type& that)
- {
- type = that.type;
- that.clear ();
- }
- inline
- int
- EvalParser::by_type::type_get () const
- {
- return type;
- }
- inline
- EvalParser::token_type
- EvalParser::by_type::token () const
- {
-
-
- static
- const unsigned short int
- yytoken_number_[] =
- {
- 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
- 265, 266, 267, 268, 269, 270, 271, 272, 273
- };
- return static_cast<token_type> (yytoken_number_[type]);
- }
-
- EvalParser::symbol_type
- EvalParser::make_END (const location_type& l)
- {
- return symbol_type (token::TOKEN_END, l);
- }
- EvalParser::symbol_type
- EvalParser::make_EQUAL (const location_type& l)
- {
- return symbol_type (token::TOKEN_EQUAL, l);
- }
- EvalParser::symbol_type
- EvalParser::make_OPTION (const location_type& l)
- {
- return symbol_type (token::TOKEN_OPTION, l);
- }
- EvalParser::symbol_type
- EvalParser::make_SUBSTRING (const location_type& l)
- {
- return symbol_type (token::TOKEN_SUBSTRING, l);
- }
- EvalParser::symbol_type
- EvalParser::make_TEXT (const location_type& l)
- {
- return symbol_type (token::TOKEN_TEXT, l);
- }
- EvalParser::symbol_type
- EvalParser::make_HEX (const location_type& l)
- {
- return symbol_type (token::TOKEN_HEX, l);
- }
- EvalParser::symbol_type
- EvalParser::make_ALL (const location_type& l)
- {
- return symbol_type (token::TOKEN_ALL, l);
- }
- EvalParser::symbol_type
- EvalParser::make_DOT (const location_type& l)
- {
- return symbol_type (token::TOKEN_DOT, l);
- }
- EvalParser::symbol_type
- EvalParser::make_COMA (const location_type& l)
- {
- return symbol_type (token::TOKEN_COMA, l);
- }
- EvalParser::symbol_type
- EvalParser::make_LPAREN (const location_type& l)
- {
- return symbol_type (token::TOKEN_LPAREN, l);
- }
- EvalParser::symbol_type
- EvalParser::make_RPAREN (const location_type& l)
- {
- return symbol_type (token::TOKEN_RPAREN, l);
- }
- EvalParser::symbol_type
- EvalParser::make_LBRACKET (const location_type& l)
- {
- return symbol_type (token::TOKEN_LBRACKET, l);
- }
- EvalParser::symbol_type
- EvalParser::make_RBRACKET (const location_type& l)
- {
- return symbol_type (token::TOKEN_RBRACKET, l);
- }
- EvalParser::symbol_type
- EvalParser::make_STRING (const std::string& v, const location_type& l)
- {
- return symbol_type (token::TOKEN_STRING, v, l);
- }
- EvalParser::symbol_type
- EvalParser::make_INTEGER (const std::string& v, const location_type& l)
- {
- return symbol_type (token::TOKEN_INTEGER, v, l);
- }
- EvalParser::symbol_type
- EvalParser::make_HEXSTRING (const std::string& v, const location_type& l)
- {
- return symbol_type (token::TOKEN_HEXSTRING, v, l);
- }
- EvalParser::symbol_type
- EvalParser::make_TOKEN (const std::string& v, const location_type& l)
- {
- return symbol_type (token::TOKEN_TOKEN, v, l);
- }
- #line 21 "parser.yy" // lalr1.cc:392
- } }
- #line 1087 "parser.h" // lalr1.cc:392
- #endif // !YY_YY_PARSER_H_INCLUDED
|