Neal Norwitz | 897ff81 | 2005-12-11 21:18:22 +0000 | [diff] [blame] | 1 | /* File automatically generated by Parser/asdl_c.py */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2 | |
| 3 | #include "asdl.h" |
| 4 | |
| 5 | typedef struct _mod *mod_ty; |
| 6 | |
| 7 | typedef struct _stmt *stmt_ty; |
| 8 | |
| 9 | typedef struct _expr *expr_ty; |
| 10 | |
| 11 | typedef enum _expr_context { Load=1, Store=2, Del=3, AugLoad=4, AugStore=5, |
| 12 | Param=6 } expr_context_ty; |
| 13 | |
| 14 | typedef struct _slice *slice_ty; |
| 15 | |
| 16 | typedef enum _boolop { And=1, Or=2 } boolop_ty; |
| 17 | |
| 18 | typedef 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 | |
| 22 | typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty; |
| 23 | |
| 24 | typedef 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 | |
| 27 | typedef struct _comprehension *comprehension_ty; |
| 28 | |
| 29 | typedef struct _excepthandler *excepthandler_ty; |
| 30 | |
| 31 | typedef struct _arguments *arguments_ty; |
| 32 | |
| 33 | typedef struct _keyword *keyword_ty; |
| 34 | |
| 35 | typedef struct _alias *alias_ty; |
| 36 | |
Neal Norwitz | 7b5a604 | 2005-11-13 19:14:20 +0000 | [diff] [blame] | 37 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 38 | struct _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 | |
| 61 | struct _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 Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 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, |
| 67 | Exec_kind=18, Global_kind=19, Expr_kind=20, Pass_kind=21, |
| 68 | Break_kind=22, Continue_kind=23 } kind; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 69 | 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 Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 128 | expr_ty context_expr; |
| 129 | expr_ty optional_vars; |
| 130 | asdl_seq *body; |
| 131 | } With; |
| 132 | |
| 133 | struct { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 134 | 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 Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 162 | int level; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 163 | } 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öwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 181 | int col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 182 | }; |
| 183 | |
| 184 | struct _expr { |
| 185 | enum { BoolOp_kind=1, BinOp_kind=2, UnaryOp_kind=3, Lambda_kind=4, |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 186 | 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 Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 190 | 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 Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 213 | expr_ty test; |
| 214 | expr_ty body; |
| 215 | expr_ty orelse; |
| 216 | } IfExp; |
| 217 | |
| 218 | struct { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 219 | 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öwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 292 | int col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 293 | }; |
| 294 | |
| 295 | struct _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 | |
| 316 | struct _comprehension { |
| 317 | expr_ty target; |
| 318 | expr_ty iter; |
| 319 | asdl_seq *ifs; |
| 320 | }; |
| 321 | |
| 322 | struct _excepthandler { |
| 323 | expr_ty type; |
| 324 | expr_ty name; |
| 325 | asdl_seq *body; |
| 326 | }; |
| 327 | |
| 328 | struct _arguments { |
| 329 | asdl_seq *args; |
| 330 | identifier vararg; |
| 331 | identifier kwarg; |
| 332 | asdl_seq *defaults; |
| 333 | }; |
| 334 | |
| 335 | struct _keyword { |
| 336 | identifier arg; |
| 337 | expr_ty value; |
| 338 | }; |
| 339 | |
| 340 | struct _alias { |
| 341 | identifier name; |
| 342 | identifier asname; |
| 343 | }; |
| 344 | |
Neal Norwitz | 7b5a604 | 2005-11-13 19:14:20 +0000 | [diff] [blame] | 345 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 346 | mod_ty Module(asdl_seq * body, PyArena *arena); |
| 347 | mod_ty Interactive(asdl_seq * body, PyArena *arena); |
| 348 | mod_ty Expression(expr_ty body, PyArena *arena); |
| 349 | mod_ty Suite(asdl_seq * body, PyArena *arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 350 | stmt_ty FunctionDef(identifier name, arguments_ty args, asdl_seq * body, |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 351 | asdl_seq * decorators, int lineno, int col_offset, PyArena |
| 352 | *arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 353 | stmt_ty ClassDef(identifier name, asdl_seq * bases, asdl_seq * body, int |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 354 | lineno, int col_offset, PyArena *arena); |
| 355 | stmt_ty Return(expr_ty value, int lineno, int col_offset, PyArena *arena); |
| 356 | stmt_ty Delete(asdl_seq * targets, int lineno, int col_offset, PyArena *arena); |
| 357 | stmt_ty Assign(asdl_seq * targets, expr_ty value, int lineno, int col_offset, |
| 358 | PyArena *arena); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 359 | stmt_ty AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 360 | int col_offset, PyArena *arena); |
| 361 | stmt_ty Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, int |
| 362 | col_offset, PyArena *arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 363 | stmt_ty For(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq * orelse, |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 364 | int lineno, int col_offset, PyArena *arena); |
| 365 | stmt_ty While(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, int |
| 366 | col_offset, PyArena *arena); |
| 367 | stmt_ty If(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, int |
| 368 | col_offset, PyArena *arena); |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 369 | stmt_ty With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body, int |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 370 | lineno, int col_offset, PyArena *arena); |
| 371 | stmt_ty Raise(expr_ty type, expr_ty inst, expr_ty tback, int lineno, int |
| 372 | col_offset, PyArena *arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 373 | stmt_ty TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse, int |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 374 | lineno, int col_offset, PyArena *arena); |
| 375 | stmt_ty TryFinally(asdl_seq * body, asdl_seq * finalbody, int lineno, int |
| 376 | col_offset, PyArena *arena); |
| 377 | stmt_ty Assert(expr_ty test, expr_ty msg, int lineno, int col_offset, PyArena |
| 378 | *arena); |
| 379 | stmt_ty Import(asdl_seq * names, int lineno, int col_offset, PyArena *arena); |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 380 | stmt_ty ImportFrom(identifier module, asdl_seq * names, int level, int lineno, |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 381 | int col_offset, PyArena *arena); |
| 382 | stmt_ty Exec(expr_ty body, expr_ty globals, expr_ty locals, int lineno, int |
| 383 | col_offset, PyArena *arena); |
| 384 | stmt_ty Global(asdl_seq * names, int lineno, int col_offset, PyArena *arena); |
| 385 | stmt_ty Expr(expr_ty value, int lineno, int col_offset, PyArena *arena); |
| 386 | stmt_ty Pass(int lineno, int col_offset, PyArena *arena); |
| 387 | stmt_ty Break(int lineno, int col_offset, PyArena *arena); |
| 388 | stmt_ty Continue(int lineno, int col_offset, PyArena *arena); |
| 389 | expr_ty BoolOp(boolop_ty op, asdl_seq * values, int lineno, int col_offset, |
| 390 | PyArena *arena); |
| 391 | expr_ty BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int |
| 392 | col_offset, PyArena *arena); |
| 393 | expr_ty UnaryOp(unaryop_ty op, expr_ty operand, int lineno, int col_offset, |
| 394 | PyArena *arena); |
| 395 | expr_ty Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset, |
| 396 | PyArena *arena); |
| 397 | expr_ty IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int |
| 398 | col_offset, PyArena *arena); |
| 399 | expr_ty Dict(asdl_seq * keys, asdl_seq * values, int lineno, int col_offset, |
| 400 | PyArena *arena); |
| 401 | expr_ty ListComp(expr_ty elt, asdl_seq * generators, int lineno, int |
| 402 | col_offset, PyArena *arena); |
| 403 | expr_ty GeneratorExp(expr_ty elt, asdl_seq * generators, int lineno, int |
| 404 | col_offset, PyArena *arena); |
| 405 | expr_ty Yield(expr_ty value, int lineno, int col_offset, PyArena *arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 406 | expr_ty Compare(expr_ty left, asdl_seq * ops, asdl_seq * comparators, int |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 407 | lineno, int col_offset, PyArena *arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 408 | expr_ty Call(expr_ty func, asdl_seq * args, asdl_seq * keywords, expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 409 | starargs, expr_ty kwargs, int lineno, int col_offset, PyArena |
| 410 | *arena); |
| 411 | expr_ty Repr(expr_ty value, int lineno, int col_offset, PyArena *arena); |
| 412 | expr_ty Num(object n, int lineno, int col_offset, PyArena *arena); |
| 413 | expr_ty Str(string s, int lineno, int col_offset, PyArena *arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 414 | expr_ty Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 415 | lineno, int col_offset, PyArena *arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 416 | expr_ty Subscript(expr_ty value, slice_ty slice, expr_context_ty ctx, int |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 417 | lineno, int col_offset, PyArena *arena); |
| 418 | expr_ty Name(identifier id, expr_context_ty ctx, int lineno, int col_offset, |
| 419 | PyArena *arena); |
| 420 | expr_ty List(asdl_seq * elts, expr_context_ty ctx, int lineno, int col_offset, |
| 421 | PyArena *arena); |
| 422 | expr_ty Tuple(asdl_seq * elts, expr_context_ty ctx, int lineno, int col_offset, |
| 423 | PyArena *arena); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 424 | slice_ty Ellipsis(PyArena *arena); |
| 425 | slice_ty Slice(expr_ty lower, expr_ty upper, expr_ty step, PyArena *arena); |
| 426 | slice_ty ExtSlice(asdl_seq * dims, PyArena *arena); |
| 427 | slice_ty Index(expr_ty value, PyArena *arena); |
| 428 | comprehension_ty comprehension(expr_ty target, expr_ty iter, asdl_seq * ifs, |
| 429 | PyArena *arena); |
| 430 | excepthandler_ty excepthandler(expr_ty type, expr_ty name, asdl_seq * body, |
| 431 | PyArena *arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 432 | arguments_ty arguments(asdl_seq * args, identifier vararg, identifier kwarg, |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 433 | asdl_seq * defaults, PyArena *arena); |
| 434 | keyword_ty keyword(identifier arg, expr_ty value, PyArena *arena); |
| 435 | alias_ty alias(identifier name, identifier asname, PyArena *arena); |
Neal Norwitz | 7b5a604 | 2005-11-13 19:14:20 +0000 | [diff] [blame] | 436 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 437 | PyObject* PyAST_mod2obj(mod_ty t); |