blob: 7253f97789a5e7b70b9e4588496816b61fab8e62 [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
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000038struct _mod {
39 enum { Module_kind=1, Interactive_kind=2, Expression_kind=3,
40 Suite_kind=4 } kind;
41 union {
42 struct {
43 asdl_seq *body;
44 } Module;
45
46 struct {
47 asdl_seq *body;
48 } Interactive;
49
50 struct {
51 expr_ty body;
52 } Expression;
53
54 struct {
55 asdl_seq *body;
56 } Suite;
57
58 } v;
59};
60
61struct _stmt {
62 enum { FunctionDef_kind=1, ClassDef_kind=2, Return_kind=3,
63 Delete_kind=4, Assign_kind=5, AugAssign_kind=6, Print_kind=7,
Guido van Rossumc2e20742006-02-27 22:32:47 +000064 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,
67 Exec_kind=18, Global_kind=19, Expr_kind=20, Pass_kind=21,
68 Break_kind=22, Continue_kind=23 } kind;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000069 union {
70 struct {
71 identifier name;
72 arguments_ty args;
73 asdl_seq *body;
74 asdl_seq *decorators;
75 } FunctionDef;
76
77 struct {
78 identifier name;
79 asdl_seq *bases;
80 asdl_seq *body;
81 } ClassDef;
82
83 struct {
84 expr_ty value;
85 } Return;
86
87 struct {
88 asdl_seq *targets;
89 } Delete;
90
91 struct {
92 asdl_seq *targets;
93 expr_ty value;
94 } Assign;
95
96 struct {
97 expr_ty target;
98 operator_ty op;
99 expr_ty value;
100 } AugAssign;
101
102 struct {
103 expr_ty dest;
104 asdl_seq *values;
105 bool nl;
106 } Print;
107
108 struct {
109 expr_ty target;
110 expr_ty iter;
111 asdl_seq *body;
112 asdl_seq *orelse;
113 } For;
114
115 struct {
116 expr_ty test;
117 asdl_seq *body;
118 asdl_seq *orelse;
119 } While;
120
121 struct {
122 expr_ty test;
123 asdl_seq *body;
124 asdl_seq *orelse;
125 } If;
126
127 struct {
Guido van Rossumc2e20742006-02-27 22:32:47 +0000128 expr_ty context_expr;
129 expr_ty optional_vars;
130 asdl_seq *body;
131 } With;
132
133 struct {
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000134 expr_ty type;
135 expr_ty inst;
136 expr_ty tback;
137 } Raise;
138
139 struct {
140 asdl_seq *body;
141 asdl_seq *handlers;
142 asdl_seq *orelse;
143 } TryExcept;
144
145 struct {
146 asdl_seq *body;
147 asdl_seq *finalbody;
148 } TryFinally;
149
150 struct {
151 expr_ty test;
152 expr_ty msg;
153 } Assert;
154
155 struct {
156 asdl_seq *names;
157 } Import;
158
159 struct {
160 identifier module;
161 asdl_seq *names;
Thomas Woutersf7f438b2006-02-28 16:09:29 +0000162 int level;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000163 } ImportFrom;
164
165 struct {
166 expr_ty body;
167 expr_ty globals;
168 expr_ty locals;
169 } Exec;
170
171 struct {
172 asdl_seq *names;
173 } Global;
174
175 struct {
176 expr_ty value;
177 } Expr;
178
179 } v;
180 int lineno;
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000181 int col_offset;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000182};
183
184struct _expr {
185 enum { BoolOp_kind=1, BinOp_kind=2, UnaryOp_kind=3, Lambda_kind=4,
Thomas Woutersdca3b9c2006-02-27 00:24:13 +0000186 IfExp_kind=5, Dict_kind=6, ListComp_kind=7, GeneratorExp_kind=8,
187 Yield_kind=9, Compare_kind=10, Call_kind=11, Repr_kind=12,
188 Num_kind=13, Str_kind=14, Attribute_kind=15, Subscript_kind=16,
189 Name_kind=17, List_kind=18, Tuple_kind=19 } kind;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000190 union {
191 struct {
192 boolop_ty op;
193 asdl_seq *values;
194 } BoolOp;
195
196 struct {
197 expr_ty left;
198 operator_ty op;
199 expr_ty right;
200 } BinOp;
201
202 struct {
203 unaryop_ty op;
204 expr_ty operand;
205 } UnaryOp;
206
207 struct {
208 arguments_ty args;
209 expr_ty body;
210 } Lambda;
211
212 struct {
Thomas Woutersdca3b9c2006-02-27 00:24:13 +0000213 expr_ty test;
214 expr_ty body;
215 expr_ty orelse;
216 } IfExp;
217
218 struct {
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000219 asdl_seq *keys;
220 asdl_seq *values;
221 } Dict;
222
223 struct {
224 expr_ty elt;
225 asdl_seq *generators;
226 } ListComp;
227
228 struct {
229 expr_ty elt;
230 asdl_seq *generators;
231 } GeneratorExp;
232
233 struct {
234 expr_ty value;
235 } Yield;
236
237 struct {
238 expr_ty left;
239 asdl_seq *ops;
240 asdl_seq *comparators;
241 } Compare;
242
243 struct {
244 expr_ty func;
245 asdl_seq *args;
246 asdl_seq *keywords;
247 expr_ty starargs;
248 expr_ty kwargs;
249 } Call;
250
251 struct {
252 expr_ty value;
253 } Repr;
254
255 struct {
256 object n;
257 } Num;
258
259 struct {
260 string s;
261 } Str;
262
263 struct {
264 expr_ty value;
265 identifier attr;
266 expr_context_ty ctx;
267 } Attribute;
268
269 struct {
270 expr_ty value;
271 slice_ty slice;
272 expr_context_ty ctx;
273 } Subscript;
274
275 struct {
276 identifier id;
277 expr_context_ty ctx;
278 } Name;
279
280 struct {
281 asdl_seq *elts;
282 expr_context_ty ctx;
283 } List;
284
285 struct {
286 asdl_seq *elts;
287 expr_context_ty ctx;
288 } Tuple;
289
290 } v;
291 int lineno;
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000292 int col_offset;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000293};
294
295struct _slice {
296 enum { Ellipsis_kind=1, Slice_kind=2, ExtSlice_kind=3, Index_kind=4 }
297 kind;
298 union {
299 struct {
300 expr_ty lower;
301 expr_ty upper;
302 expr_ty step;
303 } Slice;
304
305 struct {
306 asdl_seq *dims;
307 } ExtSlice;
308
309 struct {
310 expr_ty value;
311 } Index;
312
313 } v;
314};
315
316struct _comprehension {
317 expr_ty target;
318 expr_ty iter;
319 asdl_seq *ifs;
320};
321
322struct _excepthandler {
323 expr_ty type;
324 expr_ty name;
325 asdl_seq *body;
Jeremy Hylton2f327c12006-04-04 04:00:23 +0000326 int lineno;
327 int col_offset;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000328};
329
330struct _arguments {
331 asdl_seq *args;
332 identifier vararg;
333 identifier kwarg;
334 asdl_seq *defaults;
335};
336
337struct _keyword {
338 identifier arg;
339 expr_ty value;
340};
341
342struct _alias {
343 identifier name;
344 identifier asname;
345};
346
Neal Norwitz7b5a6042005-11-13 19:14:20 +0000347
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000348mod_ty Module(asdl_seq * body, PyArena *arena);
349mod_ty Interactive(asdl_seq * body, PyArena *arena);
350mod_ty Expression(expr_ty body, PyArena *arena);
351mod_ty Suite(asdl_seq * body, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000352stmt_ty FunctionDef(identifier name, arguments_ty args, asdl_seq * body,
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000353 asdl_seq * decorators, int lineno, int col_offset, PyArena
354 *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000355stmt_ty ClassDef(identifier name, asdl_seq * bases, asdl_seq * body, int
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000356 lineno, int col_offset, PyArena *arena);
357stmt_ty Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
358stmt_ty Delete(asdl_seq * targets, int lineno, int col_offset, PyArena *arena);
359stmt_ty Assign(asdl_seq * targets, expr_ty value, int lineno, int col_offset,
360 PyArena *arena);
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000361stmt_ty AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno,
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000362 int col_offset, PyArena *arena);
363stmt_ty Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, int
364 col_offset, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000365stmt_ty For(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq * orelse,
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000366 int lineno, int col_offset, PyArena *arena);
367stmt_ty While(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, int
368 col_offset, PyArena *arena);
369stmt_ty If(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, int
370 col_offset, PyArena *arena);
Guido van Rossumc2e20742006-02-27 22:32:47 +0000371stmt_ty With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body, int
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000372 lineno, int col_offset, PyArena *arena);
373stmt_ty Raise(expr_ty type, expr_ty inst, expr_ty tback, int lineno, int
374 col_offset, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000375stmt_ty TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse, int
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000376 lineno, int col_offset, PyArena *arena);
377stmt_ty TryFinally(asdl_seq * body, asdl_seq * finalbody, int lineno, int
378 col_offset, PyArena *arena);
379stmt_ty Assert(expr_ty test, expr_ty msg, int lineno, int col_offset, PyArena
380 *arena);
381stmt_ty Import(asdl_seq * names, int lineno, int col_offset, PyArena *arena);
Thomas Woutersf7f438b2006-02-28 16:09:29 +0000382stmt_ty ImportFrom(identifier module, asdl_seq * names, int level, int lineno,
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000383 int col_offset, PyArena *arena);
384stmt_ty Exec(expr_ty body, expr_ty globals, expr_ty locals, int lineno, int
385 col_offset, PyArena *arena);
386stmt_ty Global(asdl_seq * names, int lineno, int col_offset, PyArena *arena);
387stmt_ty Expr(expr_ty value, int lineno, int col_offset, PyArena *arena);
388stmt_ty Pass(int lineno, int col_offset, PyArena *arena);
389stmt_ty Break(int lineno, int col_offset, PyArena *arena);
390stmt_ty Continue(int lineno, int col_offset, PyArena *arena);
391expr_ty BoolOp(boolop_ty op, asdl_seq * values, int lineno, int col_offset,
392 PyArena *arena);
393expr_ty BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int
394 col_offset, PyArena *arena);
395expr_ty UnaryOp(unaryop_ty op, expr_ty operand, int lineno, int col_offset,
396 PyArena *arena);
397expr_ty Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset,
398 PyArena *arena);
399expr_ty IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int
400 col_offset, PyArena *arena);
401expr_ty Dict(asdl_seq * keys, asdl_seq * values, int lineno, int col_offset,
402 PyArena *arena);
403expr_ty ListComp(expr_ty elt, asdl_seq * generators, int lineno, int
404 col_offset, PyArena *arena);
405expr_ty GeneratorExp(expr_ty elt, asdl_seq * generators, int lineno, int
406 col_offset, PyArena *arena);
407expr_ty Yield(expr_ty value, int lineno, int col_offset, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000408expr_ty Compare(expr_ty left, asdl_seq * ops, asdl_seq * comparators, int
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000409 lineno, int col_offset, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000410expr_ty Call(expr_ty func, asdl_seq * args, asdl_seq * keywords, expr_ty
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000411 starargs, expr_ty kwargs, int lineno, int col_offset, PyArena
412 *arena);
413expr_ty Repr(expr_ty value, int lineno, int col_offset, PyArena *arena);
414expr_ty Num(object n, int lineno, int col_offset, PyArena *arena);
415expr_ty Str(string s, int lineno, int col_offset, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000416expr_ty Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000417 lineno, int col_offset, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000418expr_ty Subscript(expr_ty value, slice_ty slice, expr_context_ty ctx, int
Martin v. Löwis49c5da12006-03-01 22:49:05 +0000419 lineno, int col_offset, PyArena *arena);
420expr_ty Name(identifier id, expr_context_ty ctx, int lineno, int col_offset,
421 PyArena *arena);
422expr_ty List(asdl_seq * elts, expr_context_ty ctx, int lineno, int col_offset,
423 PyArena *arena);
424expr_ty Tuple(asdl_seq * elts, expr_context_ty ctx, int lineno, int col_offset,
425 PyArena *arena);
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000426slice_ty Ellipsis(PyArena *arena);
427slice_ty Slice(expr_ty lower, expr_ty upper, expr_ty step, PyArena *arena);
428slice_ty ExtSlice(asdl_seq * dims, PyArena *arena);
429slice_ty Index(expr_ty value, PyArena *arena);
430comprehension_ty comprehension(expr_ty target, expr_ty iter, asdl_seq * ifs,
431 PyArena *arena);
Jeremy Hylton2f327c12006-04-04 04:00:23 +0000432excepthandler_ty excepthandler(expr_ty type, expr_ty name, asdl_seq * body, int
433 lineno, int col_offset, PyArena *arena);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000434arguments_ty arguments(asdl_seq * args, identifier vararg, identifier kwarg,
Neal Norwitzadb69fc2005-12-17 20:54:49 +0000435 asdl_seq * defaults, PyArena *arena);
436keyword_ty keyword(identifier arg, expr_ty value, PyArena *arena);
437alias_ty alias(identifier name, identifier asname, PyArena *arena);
Neal Norwitz7b5a6042005-11-13 19:14:20 +0000438
Martin v. Löwisbd260da2006-02-26 19:42:26 +0000439PyObject* PyAST_mod2obj(mod_ty t);