yast2-core
parser.hh
Go to the documentation of this file.
1 /* A Bison parser, made by GNU Bison 2.6.5. */
2 
3 /* Bison interface for Yacc-like parsers in C
4 
5  Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.
6 
7  This program is free software: you can redistribute it and/or modify
8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation, either version 3 of the License, or
10  (at your option) any later version.
11 
12  This program is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU General Public License for more details.
16 
17  You should have received a copy of the GNU General Public License
18  along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 
20 /* As a special exception, you may create a larger work that contains
21  part or all of the Bison parser skeleton and distribute that work
22  under terms of your choice, so long as that work isn't itself a
23  parser generator using the skeleton or a modified version thereof
24  as a parser skeleton. Alternatively, if you modify or redistribute
25  the parser skeleton itself, you may (at your option) remove this
26  special exception, which will cause the skeleton and the resulting
27  Bison output files to be licensed under the GNU General Public
28  License without this special exception.
29 
30  This special exception was added by the Free Software Foundation in
31  version 2.2 of Bison. */
32 
33 #ifndef YY_YY_PARSER_HH_INCLUDED
34 # define YY_YY_PARSER_HH_INCLUDED
35 /* Enabling traces. */
36 #ifndef YYDEBUG
37 # define YYDEBUG 0
38 #endif
39 #if YYDEBUG
40 extern int yydebug;
41 #endif
42 
43 /* Tokens. */
44 #ifndef YYTOKENTYPE
45 # define YYTOKENTYPE
46  /* Put the tokens into the symbol table, so that GDB and other debuggers
47  know about them. */
48  enum yytokentype {
50  END_OF_FILE = 259,
51  EMPTY = 260,
52  LIST = 261,
53  MAP = 262,
54  STRUCT = 263,
55  BLOCK = 264,
56  DEFINE = 265,
57  UNDEFINE = 266,
58  I18N = 267,
59  RETURN = 268,
60  CONTINUE = 269,
61  BREAK = 270,
62  IF = 271,
63  DO = 272,
64  WHILE = 273,
65  REPEAT = 274,
66  UNTIL = 275,
67  IS = 276,
68  ISNIL = 277,
69  SYMBOL = 278,
70  DCSYMBOL = 279,
72  QUOTED_BLOCK = 281,
74  CLOSEBRACKET = 283,
75  TYPEDEF = 284,
76  MODULE = 285,
77  IMPORT = 286,
78  EXPORT = 287,
79  MAPEXPR = 288,
80  INCLUDE = 289,
81  GLOBAL = 290,
82  TEXTDOMAIN = 291,
83  CONST = 292,
84  FULLNAME = 293,
85  STATIC = 294,
86  EXTERN = 295,
87  LOOKUP = 296,
88  SELECT = 297,
89  SWITCH = 298,
90  CASE = 299,
91  DEFAULT = 300,
93  IDENTIFIER = 302,
94  STRING = 303,
95  C_VOID = 304,
96  C_BOOLEAN = 305,
97  C_INTEGER = 306,
98  C_FLOAT = 307,
99  C_BYTEBLOCK = 308,
100  C_PATH = 309,
101  C_SYMBOL = 310,
102  C_TYPE = 311,
103  OR = 312,
104  AND = 313,
105  NEQ = 314,
106  EQUALS = 315,
107  GE = 316,
108  LE = 317,
109  RIGHT = 318,
110  LEFT = 319,
111  ELSE = 320,
112  UMINUS = 321
113  };
114 #endif
115 /* Tokens. */
116 #define SCANNER_ERROR 258
117 #define END_OF_FILE 259
118 #define EMPTY 260
119 #define LIST 261
120 #define MAP 262
121 #define STRUCT 263
122 #define BLOCK 264
123 #define DEFINE 265
124 #define UNDEFINE 266
125 #define I18N 267
126 #define RETURN 268
127 #define CONTINUE 269
128 #define BREAK 270
129 #define IF 271
130 #define DO 272
131 #define WHILE 273
132 #define REPEAT 274
133 #define UNTIL 275
134 #define IS 276
135 #define ISNIL 277
136 #define SYMBOL 278
137 #define DCSYMBOL 279
138 #define DCQUOTED_BLOCK 280
139 #define QUOTED_BLOCK 281
140 #define QUOTED_EXPRESSION 282
141 #define CLOSEBRACKET 283
142 #define TYPEDEF 284
143 #define MODULE 285
144 #define IMPORT 286
145 #define EXPORT 287
146 #define MAPEXPR 288
147 #define INCLUDE 289
148 #define GLOBAL 290
149 #define TEXTDOMAIN 291
150 #define CONST 292
151 #define FULLNAME 293
152 #define STATIC 294
153 #define EXTERN 295
154 #define LOOKUP 296
155 #define SELECT 297
156 #define SWITCH 298
157 #define CASE 299
158 #define DEFAULT 300
159 #define SYM_NAMESPACE 301
160 #define IDENTIFIER 302
161 #define STRING 303
162 #define C_VOID 304
163 #define C_BOOLEAN 305
164 #define C_INTEGER 306
165 #define C_FLOAT 307
166 #define C_BYTEBLOCK 308
167 #define C_PATH 309
168 #define C_SYMBOL 310
169 #define C_TYPE 311
170 #define OR 312
171 #define AND 313
172 #define NEQ 314
173 #define EQUALS 315
174 #define GE 316
175 #define LE 317
176 #define RIGHT 318
177 #define LEFT 319
178 #define ELSE 320
179 #define UMINUS 321
180 
181 
182 
183 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
184 typedef int YYSTYPE;
185 # define YYSTYPE_IS_TRIVIAL 1
186 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
187 # define YYSTYPE_IS_DECLARED 1
188 #endif
189 
190 
191 #ifdef YYPARSE_PARAM
192 #if defined __STDC__ || defined __cplusplus
193 int yyparse (void *YYPARSE_PARAM);
194 #else
195 int yyparse ();
196 #endif
197 #else /* ! YYPARSE_PARAM */
198 #if defined __STDC__ || defined __cplusplus
199 int yyparse (void);
200 #else
201 int yyparse ();
202 #endif
203 #endif /* ! YYPARSE_PARAM */
204 
205 #endif /* !YY_YY_PARSER_HH_INCLUDED */

Generated on a sunny day for yast2-core by doxygen 1.8.2