blob: 6182617c0982e5aebc8029169aba3793b9019b21 [file] [log] [blame]
Neal Norwitz897ff812005-12-11 21:18:22 +00001/* File automatically generated by Parser/asdl_c.py */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002
3#include "asdl.h"
4
5typedef struct _mod *mod_ty;
6
7typedef struct _stmt *stmt_ty;
8
9typedef struct _expr *expr_ty;
10
11typedef enum _expr_context { Load=1, Store=2, Del=3, AugLoad=4, AugStore=5,
12 Param=6 } expr_context_ty;
13
14typedef struct _slice *slice_ty;
15
16typedef enum _boolop { And=1, Or=2 } boolop_ty;
17
18typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
19 RShift=8, BitOr=9, BitXor=10, BitAnd=11, FloorDiv=12 }
20 operator_ty;
21
22typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty;
23
24typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8,
25 In=9, NotIn=10 } cmpop_ty;
26
27typedef struct _comprehension *comprehension_ty;
28
29typedef struct _excepthandler *excepthandler_ty;
30
31typedef struct _arguments *arguments_ty;
32
33typedef struct _keyword *keyword_ty;
34
35typedef struct _alias *alias_ty;
36
Neal Norwitz7b5a6042005-11-13 19:14:20 +000037
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000038enum _mod_kind {Module_kind=1, Interactive_kind=2, Expression_kind=3,
39 Suite_kind=4};
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000040struct _mod {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000041 enum _mod_kind kind;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000042 union {
43 struct {
44 asdl_seq *body;
45 } Module;
46
47 struct {
48 asdl_seq *body;
49 } Interactive;
50
51 struct {
52 expr_ty body;
53 } Expression;
54
55 struct {
56 asdl_seq *body;
57 } Suite;
58
59 } v;
60};
61
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000062enum _stmt_kind {FunctionDef_kind=1, ClassDef_kind=2, Return_kind=3,
63 Delete_kind=4, Assign_kind=5, AugAssign_kind=6, Print_kind=7,
64 For_kind=8, While_kind=9, If_kind=10, With_kind=11,
65 Raise_kind=12, TryExcept_kind=13, TryFinally_kind=14,
66 Assert_kind=15, Import_kind=16, ImportFrom_kind=17,
Georg Brandl7cae87c2006-09-06 06:51:57 +000067 Global_kind=18, Expr_kind=19, Pass_kind=20, Break_kind=21,
68 Continue_kind=22};
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000069struct _stmt {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000070 enum _stmt_kind kind;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000071 union {
72 struct {
73 identifier name;
74 arguments_ty args;
75 asdl_seq *body;
76 asdl_seq *decorators;
77 } FunctionDef;
78
79 struct {
80 identifier name;
81 asdl_seq *bases;
82 asdl_seq *body;
83 } ClassDef;
84
85 struct {
86 expr_ty value;
87 } Return;
88
89 struct {
90 asdl_seq *targets;
91 } Delete;
92
93 struct {
94 asdl_seq *targets;
95 expr_ty value;
96 } Assign;
97
98 struct {
99 expr_ty target;
100 operator_ty op;
101 expr_ty value;
102 } AugAssign;
103
104 struct {
105 expr_ty dest;
106 asdl_seq *values;
107 bool nl;
108 } Print;
109
110 struct {
111 expr_ty target;
112 expr_ty iter;
113 asdl_seq *body;
114 asdl_seq *orelse;
115 } For;
116
117 struct {
118 expr_ty test;
119 asdl_seq *body;
120 asdl_seq *orelse;
121 } While;
122
123 struct {
124 expr_ty test;
125 asdl_seq *body;
126 asdl_seq *orelse;
127 } If;
128
129 struct {
Guido van Rossumc2e20742006-02-27 22:32:47 +0000130 expr_ty context_expr;
131 expr_ty optional_vars;
132 asdl_seq *body;
133 } With;
134
135 struct {
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000136 expr_ty type;
137 expr_ty inst;
138 expr_ty tback;
139 } Raise;
140
141 struct {
142 asdl_seq *body;
143 asdl_seq *handlers;
144 asdl_seq *orelse;
145 } TryExcept;
146
147 struct {
148 asdl_seq *body;
149 asdl_seq *finalbody;
150 } TryFinally;
151
152 struct {
153 expr_ty test;
154 expr_ty msg;
155 } Assert;
156
157 struct {
158 asdl_seq *names;
159 } Import;
160
161 struct {
162 identifier module;
163 asdl_seq *names;
Thomas Woutersf7f438b2006-02-28 16:09:29 +0000164 int level;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000165 } ImportFrom;
166
167 struct {
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000168 asdl_seq *names;
169 } Global;
170
171 struct {
172 expr_ty value;
173 } Expr;
174
175 } v;
176 int lineno;
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000177 int col_offset;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000178};
179
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000180enum _expr_kind {BoolOp_kind=1, BinOp_kind=2, UnaryOp_kind=3, Lambda_kind=4,
Guido van Rossum86e58e22006-08-28 15:27:34 +0000181 IfExp_kind=5, Dict_kind=6, Set_kind=7, ListComp_kind=8,
182 GeneratorExp_kind=9, Yield_kind=10, Compare_kind=11,
Georg Brandl52318d62006-09-06 07:06:08 +0000183 Call_kind=12, Num_kind=13, Str_kind=14, Ellipsis_kind=15,
184 Attribute_kind=16, Subscript_kind=17, Name_kind=18,
185 List_kind=19, Tuple_kind=20};
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000186struct _expr {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000187 enum _expr_kind kind;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000188 union {
189 struct {
190 boolop_ty op;
191 asdl_seq *values;
192 } BoolOp;
193
194 struct {
195 expr_ty left;
196 operator_ty op;
197 expr_ty right;
198 } BinOp;
199
200 struct {
201 unaryop_ty op;
202 expr_ty operand;
203 } UnaryOp;
204
205 struct {
206 arguments_ty args;
207 expr_ty body;
208 } Lambda;
209
210 struct {
Thomas Woutersdca3b9c2006-02-27 00:24:13 +0000211 expr_ty test;
212 expr_ty body;
213 expr_ty orelse;
214 } IfExp;
215
216 struct {
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000217 asdl_seq *keys;
218 asdl_seq *values;
219 } Dict;
220
221 struct {
Guido van Rossum86e58e22006-08-28 15:27:34 +0000222 asdl_seq *elts;
223 } Set;
224
225 struct {
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000226 expr_ty elt;
227 asdl_seq *generators;
228 } ListComp;
229
230 struct {
231 expr_ty elt;
232 asdl_seq *generators;
233 } GeneratorExp;
234
235 struct {
236 expr_ty value;
237 } Yield;
238
239 struct {
240 expr_ty left;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000241 asdl_int_seq *ops;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000242 asdl_seq *comparators;
243 } Compare;
244
245 struct {
246 expr_ty func;
247 asdl_seq *args;
248 asdl_seq *keywords;
249 expr_ty starargs;
250 expr_ty kwargs;
251 } Call;
252
253 struct {
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000254 object n;
255 } Num;
256
257 struct {
258 string s;
259 } Str;
260
261 struct {
262 expr_ty value;
263 identifier attr;
264 expr_context_ty ctx;
265 } Attribute;
266
267 struct {
268 expr_ty value;
269 slice_ty slice;
270 expr_context_ty ctx;
271 } Subscript;
272
273 struct {
274 identifier id;
275 expr_context_ty ctx;
276 } Name;
277
278 struct {
279 asdl_seq *elts;
280 expr_context_ty ctx;
281 } List;
282
283 struct {
284 asdl_seq *elts;
285 expr_context_ty ctx;
286 } Tuple;
287
288 } v;
289 int lineno;
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000290 int col_offset;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000291};
292
Georg Brandl52318d62006-09-06 07:06:08 +0000293enum _slice_kind {Slice_kind=1, ExtSlice_kind=2, Index_kind=3};
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000294struct _slice {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000295 enum _slice_kind kind;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000296 union {
297 struct {
298 expr_ty lower;
299 expr_ty upper;
300 expr_ty step;
301 } Slice;
302
303 struct {
304 asdl_seq *dims;
305 } ExtSlice;
306
307 struct {
308 expr_ty value;
309 } Index;
310
311 } v;
312};
313
314struct _comprehension {
315 expr_ty target;
316 expr_ty iter;
317 asdl_seq *ifs;
318};
319
320struct _excepthandler {
321 expr_ty type;
322 expr_ty name;
323 asdl_seq *body;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000324 int lineno;
325 int col_offset;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000326};
327
328struct _arguments {
329 asdl_seq *args;
330 identifier vararg;
331 identifier kwarg;
332 asdl_seq *defaults;
333};
334
335struct _keyword {
336 identifier arg;
337 expr_ty value;
338};
339
340struct _alias {
341 identifier name;
342 identifier asname;
343};
344
Neal Norwitz7b5a6042005-11-13 19:14:20 +0000345
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000346mod_ty Module(asdl_seq * body, PyArena *arena);
347mod_ty Interactive(asdl_seq * body, PyArena *arena);
348mod_ty Expression(expr_ty body, PyArena *arena);
349mod_ty Suite(asdl_seq * body, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000350stmt_ty FunctionDef(identifier name, arguments_ty args, asdl_seq * body,
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000351 asdl_seq * decorators, int lineno, int col_offset, PyArena
352 *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000353stmt_ty ClassDef(identifier name, asdl_seq * bases, asdl_seq * body, int
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000354 lineno, int col_offset, PyArena *arena);
355stmt_ty Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
356stmt_ty Delete(asdl_seq * targets, int lineno, int col_offset, PyArena *arena);
357stmt_ty Assign(asdl_seq * targets, expr_ty value, int lineno, int col_offset,
358 PyArena *arena);
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000359stmt_ty AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno,
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000360 int col_offset, PyArena *arena);
361stmt_ty Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, int
362 col_offset, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000363stmt_ty For(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq * orelse,
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000364 int lineno, int col_offset, PyArena *arena);
365stmt_ty While(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, int
366 col_offset, PyArena *arena);
367stmt_ty If(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, int
368 col_offset, PyArena *arena);
Guido van Rossumc2e20742006-02-27 22:32:47 +0000369stmt_ty With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body, int
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000370 lineno, int col_offset, PyArena *arena);
371stmt_ty Raise(expr_ty type, expr_ty inst, expr_ty tback, int lineno, int
372 col_offset, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000373stmt_ty TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse, int
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000374 lineno, int col_offset, PyArena *arena);
375stmt_ty TryFinally(asdl_seq * body, asdl_seq * finalbody, int lineno, int
376 col_offset, PyArena *arena);
377stmt_ty Assert(expr_ty test, expr_ty msg, int lineno, int col_offset, PyArena
378 *arena);
379stmt_ty Import(asdl_seq * names, int lineno, int col_offset, PyArena *arena);
Thomas Woutersf7f438b2006-02-28 16:09:29 +0000380stmt_ty ImportFrom(identifier module, asdl_seq * names, int level, int lineno,
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000381 int col_offset, PyArena *arena);
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000382stmt_ty Global(asdl_seq * names, int lineno, int col_offset, PyArena *arena);
383stmt_ty Expr(expr_ty value, int lineno, int col_offset, PyArena *arena);
384stmt_ty Pass(int lineno, int col_offset, PyArena *arena);
385stmt_ty Break(int lineno, int col_offset, PyArena *arena);
386stmt_ty Continue(int lineno, int col_offset, PyArena *arena);
387expr_ty BoolOp(boolop_ty op, asdl_seq * values, int lineno, int col_offset,
388 PyArena *arena);
389expr_ty BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int
390 col_offset, PyArena *arena);
391expr_ty UnaryOp(unaryop_ty op, expr_ty operand, int lineno, int col_offset,
392 PyArena *arena);
393expr_ty Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset,
394 PyArena *arena);
395expr_ty IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int
396 col_offset, PyArena *arena);
397expr_ty Dict(asdl_seq * keys, asdl_seq * values, int lineno, int col_offset,
398 PyArena *arena);
Guido van Rossum86e58e22006-08-28 15:27:34 +0000399expr_ty Set(asdl_seq * elts, int lineno, int col_offset, PyArena *arena);
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000400expr_ty ListComp(expr_ty elt, asdl_seq * generators, int lineno, int
401 col_offset, PyArena *arena);
402expr_ty GeneratorExp(expr_ty elt, asdl_seq * generators, int lineno, int
403 col_offset, PyArena *arena);
404expr_ty Yield(expr_ty value, int lineno, int col_offset, PyArena *arena);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000405expr_ty Compare(expr_ty left, asdl_int_seq * ops, asdl_seq * comparators, int
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000406 lineno, int col_offset, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000407expr_ty Call(expr_ty func, asdl_seq * args, asdl_seq * keywords, expr_ty
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000408 starargs, expr_ty kwargs, int lineno, int col_offset, PyArena
409 *arena);
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000410expr_ty Num(object n, int lineno, int col_offset, PyArena *arena);
411expr_ty Str(string s, int lineno, int col_offset, PyArena *arena);
Georg Brandl52318d62006-09-06 07:06:08 +0000412expr_ty Ellipsis(int lineno, int col_offset, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000413expr_ty Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000414 lineno, int col_offset, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000415expr_ty Subscript(expr_ty value, slice_ty slice, expr_context_ty ctx, int
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000416 lineno, int col_offset, PyArena *arena);
417expr_ty Name(identifier id, expr_context_ty ctx, int lineno, int col_offset,
418 PyArena *arena);
419expr_ty List(asdl_seq * elts, expr_context_ty ctx, int lineno, int col_offset,
420 PyArena *arena);
421expr_ty Tuple(asdl_seq * elts, expr_context_ty ctx, int lineno, int col_offset,
422 PyArena *arena);
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000423slice_ty Slice(expr_ty lower, expr_ty upper, expr_ty step, PyArena *arena);
424slice_ty ExtSlice(asdl_seq * dims, PyArena *arena);
425slice_ty Index(expr_ty value, PyArena *arena);
426comprehension_ty comprehension(expr_ty target, expr_ty iter, asdl_seq * ifs,
427 PyArena *arena);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000428excepthandler_ty excepthandler(expr_ty type, expr_ty name, asdl_seq * body, int
429 lineno, int col_offset, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000430arguments_ty arguments(asdl_seq * args, identifier vararg, identifier kwarg,
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000431 asdl_seq * defaults, PyArena *arena);
432keyword_ty keyword(identifier arg, expr_ty value, PyArena *arena);
433alias_ty alias(identifier name, identifier asname, PyArena *arena);
Neal Norwitz7b5a6042005-11-13 19:14:20 +0000434
Martin v. Löwisbd260da2006-02-26 19:42:26 +0000435PyObject* PyAST_mod2obj(mod_ty t);