fixed nested_function, started fixing new
[swftools.git] / lib / as3 / parser.tab.h
1
2 /* A Bison parser, made by GNU Bison 2.4.  */
3
4 /* Skeleton interface for Bison's Yacc-like parsers in C
5    
6       Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
7    Free Software Foundation, Inc.
8    
9    This program is free software: you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation, either version 3 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
21
22 /* As a special exception, you may create a larger work that contains
23    part or all of the Bison parser skeleton and distribute that work
24    under terms of your choice, so long as that work isn't itself a
25    parser generator using the skeleton or a modified version thereof
26    as a parser skeleton.  Alternatively, if you modify or redistribute
27    the parser skeleton itself, you may (at your option) remove this
28    special exception, which will cause the skeleton and the resulting
29    Bison output files to be licensed under the GNU General Public
30    License without this special exception.
31    
32    This special exception was added by the Free Software Foundation in
33    version 2.2 of Bison.  */
34
35
36 /* Tokens.  */
37 #ifndef YYTOKENTYPE
38 # define YYTOKENTYPE
39    /* Put the tokens into the symbol table, so that GDB and other debuggers
40       know about them.  */
41    enum yytokentype {
42      T_IDENTIFIER = 258,
43      T_STRING = 259,
44      T_REGEXP = 260,
45      T_EMPTY = 261,
46      T_INT = 262,
47      T_UINT = 263,
48      T_BYTE = 264,
49      T_SHORT = 265,
50      T_FLOAT = 266,
51      T_FOR = 267,
52      T_WHILE = 268,
53      T_DO = 269,
54      T_SWITCH = 270,
55      KW_IMPLEMENTS = 271,
56      KW_NAMESPACE = 272,
57      KW_PACKAGE = 273,
58      KW_PROTECTED = 274,
59      KW_PUBLIC = 275,
60      KW_PRIVATE = 276,
61      KW_USE = 277,
62      KW_INTERNAL = 278,
63      KW_NEW = 279,
64      KW_NATIVE = 280,
65      KW_FUNCTION = 281,
66      KW_FINALLY = 282,
67      KW_UNDEFINED = 283,
68      KW_CONTINUE = 284,
69      KW_CLASS = 285,
70      KW_CONST = 286,
71      KW_CATCH = 287,
72      KW_CASE = 288,
73      KW_SET = 289,
74      KW_VOID = 290,
75      KW_THROW = 291,
76      KW_STATIC = 292,
77      KW_WITH = 293,
78      KW_INSTANCEOF = 294,
79      KW_IMPORT = 295,
80      KW_RETURN = 296,
81      KW_TYPEOF = 297,
82      KW_INTERFACE = 298,
83      KW_NULL = 299,
84      KW_VAR = 300,
85      KW_DYNAMIC = 301,
86      KW_OVERRIDE = 302,
87      KW_FINAL = 303,
88      KW_EACH = 304,
89      KW_GET = 305,
90      KW_TRY = 306,
91      KW_SUPER = 307,
92      KW_EXTENDS = 308,
93      KW_FALSE = 309,
94      KW_TRUE = 310,
95      KW_BOOLEAN = 311,
96      KW_UINT = 312,
97      KW_INT = 313,
98      KW_NUMBER = 314,
99      KW_STRING = 315,
100      KW_DEFAULT = 316,
101      KW_DELETE = 317,
102      KW_IF = 318,
103      KW_ELSE = 319,
104      KW_BREAK = 320,
105      KW_IS = 321,
106      KW_IN = 322,
107      KW_AS = 323,
108      T_EQEQ = 324,
109      T_EQEQEQ = 325,
110      T_NE = 326,
111      T_NEE = 327,
112      T_LE = 328,
113      T_GE = 329,
114      T_ORBY = 330,
115      T_DIVBY = 331,
116      T_MODBY = 332,
117      T_MULBY = 333,
118      T_PLUSBY = 334,
119      T_MINUSBY = 335,
120      T_SHRBY = 336,
121      T_SHLBY = 337,
122      T_USHRBY = 338,
123      T_OROR = 339,
124      T_ANDAND = 340,
125      T_COLONCOLON = 341,
126      T_MINUSMINUS = 342,
127      T_PLUSPLUS = 343,
128      T_DOTDOT = 344,
129      T_DOTDOTDOT = 345,
130      T_SHL = 346,
131      T_USHR = 347,
132      T_SHR = 348,
133      prec_none = 349,
134      below_semicolon = 350,
135      below_assignment = 351,
136      below_minus = 354,
137      minusminus_prefix = 355,
138      plusplus_prefix = 356,
139      below_curly = 357,
140      new2 = 358,
141      above_identifier = 359,
142      below_else = 360,
143      above_function = 361
144    };
145 #endif
146
147
148
149 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
150 typedef union 
151 /* Line 1685 of skeleton.m4  */
152 #line 43 "parser.y"
153 tokenunion
154 {
155
156 /* Line 1685 of skeleton.m4  */
157 #line 43 "parser.y"
158
159     enum yytokentype token;
160     int flags;
161
162     classinfo_t*classinfo;
163     classinfo_list_t*classinfo_list;
164
165     int number_int;
166     unsigned int number_uint;
167     double number_float;
168     code_t*code;
169     typedcode_t value;
170     //typedcode_list_t*value_list;
171     codeandnumber_t value_list;
172     param_t* param;
173     params_t params;
174     string_t str;
175     char*id;
176     constant_t*constant;
177     for_start_t for_start;
178     abc_exception_t *exception;
179     regexp_t regexp;
180     struct {
181         abc_exception_list_t *l;
182         code_t*finally;
183     } catch_list;
184
185
186
187 /* Line 1685 of skeleton.m4  */
188 #line 189 "parser.tab.h"
189 } YYSTYPE;
190 # define YYSTYPE_IS_TRIVIAL 1
191 # define yystype YYSTYPE /* obsolescent; will be withdrawn */
192 # define YYSTYPE_IS_DECLARED 1
193 #endif
194
195 extern YYSTYPE a3_lval;
196
197