Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1 | /* File automatically generated by Parser/asdl_c.py. */ |
| 2 | |
| 3 | |
| 4 | /* |
Brett Cannon | 5b198e8 | 2007-02-27 20:16:01 +0000 | [diff] [blame] | 5 | __version__ 53986. |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 6 | |
| 7 | This module must be committed separately after each AST grammar change; |
| 8 | The __version__ number is set to the revision number of the commit |
| 9 | containing the grammar change. |
| 10 | */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 11 | |
| 12 | #include "Python.h" |
| 13 | #include "Python-ast.h" |
| 14 | |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 15 | static PyTypeObject* AST_type; |
| 16 | static PyTypeObject *mod_type; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 17 | static PyObject* ast2obj_mod(void*); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 18 | static PyTypeObject *Module_type; |
| 19 | static char *Module_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 20 | "body", |
| 21 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 22 | static PyTypeObject *Interactive_type; |
| 23 | static char *Interactive_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 24 | "body", |
| 25 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 26 | static PyTypeObject *Expression_type; |
| 27 | static char *Expression_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 28 | "body", |
| 29 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 30 | static PyTypeObject *Suite_type; |
| 31 | static char *Suite_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 32 | "body", |
| 33 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 34 | static PyTypeObject *stmt_type; |
| 35 | static char *stmt_attributes[] = { |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 36 | "lineno", |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 37 | "col_offset", |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 38 | }; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 39 | static PyObject* ast2obj_stmt(void*); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 40 | static PyTypeObject *FunctionDef_type; |
| 41 | static char *FunctionDef_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 42 | "name", |
| 43 | "args", |
| 44 | "body", |
| 45 | "decorators", |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 46 | "returns", |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 47 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 48 | static PyTypeObject *ClassDef_type; |
| 49 | static char *ClassDef_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 50 | "name", |
| 51 | "bases", |
Guido van Rossum | 52cc1d8 | 2007-03-18 15:41:51 +0000 | [diff] [blame^] | 52 | "keywords", |
| 53 | "starargs", |
| 54 | "kwargs", |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 55 | "body", |
| 56 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 57 | static PyTypeObject *Return_type; |
| 58 | static char *Return_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 59 | "value", |
| 60 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 61 | static PyTypeObject *Delete_type; |
| 62 | static char *Delete_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 63 | "targets", |
| 64 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 65 | static PyTypeObject *Assign_type; |
| 66 | static char *Assign_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 67 | "targets", |
| 68 | "value", |
| 69 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 70 | static PyTypeObject *AugAssign_type; |
| 71 | static char *AugAssign_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 72 | "target", |
| 73 | "op", |
| 74 | "value", |
| 75 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 76 | static PyTypeObject *For_type; |
| 77 | static char *For_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 78 | "target", |
| 79 | "iter", |
| 80 | "body", |
| 81 | "orelse", |
| 82 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 83 | static PyTypeObject *While_type; |
| 84 | static char *While_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 85 | "test", |
| 86 | "body", |
| 87 | "orelse", |
| 88 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 89 | static PyTypeObject *If_type; |
| 90 | static char *If_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 91 | "test", |
| 92 | "body", |
| 93 | "orelse", |
| 94 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 95 | static PyTypeObject *With_type; |
| 96 | static char *With_fields[]={ |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 97 | "context_expr", |
| 98 | "optional_vars", |
| 99 | "body", |
| 100 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 101 | static PyTypeObject *Raise_type; |
| 102 | static char *Raise_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 103 | "type", |
| 104 | "inst", |
| 105 | "tback", |
| 106 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 107 | static PyTypeObject *TryExcept_type; |
| 108 | static char *TryExcept_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 109 | "body", |
| 110 | "handlers", |
| 111 | "orelse", |
| 112 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 113 | static PyTypeObject *TryFinally_type; |
| 114 | static char *TryFinally_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 115 | "body", |
| 116 | "finalbody", |
| 117 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 118 | static PyTypeObject *Assert_type; |
| 119 | static char *Assert_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 120 | "test", |
| 121 | "msg", |
| 122 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 123 | static PyTypeObject *Import_type; |
| 124 | static char *Import_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 125 | "names", |
| 126 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 127 | static PyTypeObject *ImportFrom_type; |
| 128 | static char *ImportFrom_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 129 | "module", |
| 130 | "names", |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 131 | "level", |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 132 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 133 | static PyTypeObject *Global_type; |
| 134 | static char *Global_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 135 | "names", |
| 136 | }; |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 137 | static PyTypeObject *Nonlocal_type; |
| 138 | static char *Nonlocal_fields[]={ |
| 139 | "names", |
| 140 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 141 | static PyTypeObject *Expr_type; |
| 142 | static char *Expr_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 143 | "value", |
| 144 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 145 | static PyTypeObject *Pass_type; |
| 146 | static PyTypeObject *Break_type; |
| 147 | static PyTypeObject *Continue_type; |
| 148 | static PyTypeObject *expr_type; |
| 149 | static char *expr_attributes[] = { |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 150 | "lineno", |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 151 | "col_offset", |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 152 | }; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 153 | static PyObject* ast2obj_expr(void*); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 154 | static PyTypeObject *BoolOp_type; |
| 155 | static char *BoolOp_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 156 | "op", |
| 157 | "values", |
| 158 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 159 | static PyTypeObject *BinOp_type; |
| 160 | static char *BinOp_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 161 | "left", |
| 162 | "op", |
| 163 | "right", |
| 164 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 165 | static PyTypeObject *UnaryOp_type; |
| 166 | static char *UnaryOp_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 167 | "op", |
| 168 | "operand", |
| 169 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 170 | static PyTypeObject *Lambda_type; |
| 171 | static char *Lambda_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 172 | "args", |
| 173 | "body", |
| 174 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 175 | static PyTypeObject *IfExp_type; |
| 176 | static char *IfExp_fields[]={ |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 177 | "test", |
| 178 | "body", |
| 179 | "orelse", |
| 180 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 181 | static PyTypeObject *Dict_type; |
| 182 | static char *Dict_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 183 | "keys", |
| 184 | "values", |
| 185 | }; |
Guido van Rossum | 86e58e2 | 2006-08-28 15:27:34 +0000 | [diff] [blame] | 186 | static PyTypeObject *Set_type; |
| 187 | static char *Set_fields[]={ |
| 188 | "elts", |
| 189 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 190 | static PyTypeObject *ListComp_type; |
| 191 | static char *ListComp_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 192 | "elt", |
| 193 | "generators", |
| 194 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 195 | static PyTypeObject *GeneratorExp_type; |
| 196 | static char *GeneratorExp_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 197 | "elt", |
| 198 | "generators", |
| 199 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 200 | static PyTypeObject *Yield_type; |
| 201 | static char *Yield_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 202 | "value", |
| 203 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 204 | static PyTypeObject *Compare_type; |
| 205 | static char *Compare_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 206 | "left", |
| 207 | "ops", |
| 208 | "comparators", |
| 209 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 210 | static PyTypeObject *Call_type; |
| 211 | static char *Call_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 212 | "func", |
| 213 | "args", |
| 214 | "keywords", |
| 215 | "starargs", |
| 216 | "kwargs", |
| 217 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 218 | static PyTypeObject *Num_type; |
| 219 | static char *Num_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 220 | "n", |
| 221 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 222 | static PyTypeObject *Str_type; |
| 223 | static char *Str_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 224 | "s", |
| 225 | }; |
Thomas Wouters | 00e41de | 2007-02-23 19:56:57 +0000 | [diff] [blame] | 226 | static PyTypeObject *Bytes_type; |
| 227 | static char *Bytes_fields[]={ |
| 228 | "s", |
| 229 | }; |
Georg Brandl | 52318d6 | 2006-09-06 07:06:08 +0000 | [diff] [blame] | 230 | static PyTypeObject *Ellipsis_type; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 231 | static PyTypeObject *Attribute_type; |
| 232 | static char *Attribute_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 233 | "value", |
| 234 | "attr", |
| 235 | "ctx", |
| 236 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 237 | static PyTypeObject *Subscript_type; |
| 238 | static char *Subscript_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 239 | "value", |
| 240 | "slice", |
| 241 | "ctx", |
| 242 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 243 | static PyTypeObject *Name_type; |
| 244 | static char *Name_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 245 | "id", |
| 246 | "ctx", |
| 247 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 248 | static PyTypeObject *List_type; |
| 249 | static char *List_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 250 | "elts", |
| 251 | "ctx", |
| 252 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 253 | static PyTypeObject *Tuple_type; |
| 254 | static char *Tuple_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 255 | "elts", |
| 256 | "ctx", |
| 257 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 258 | static PyTypeObject *expr_context_type; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 259 | static PyObject *Load_singleton, *Store_singleton, *Del_singleton, |
| 260 | *AugLoad_singleton, *AugStore_singleton, *Param_singleton; |
| 261 | static PyObject* ast2obj_expr_context(expr_context_ty); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 262 | static PyTypeObject *Load_type; |
| 263 | static PyTypeObject *Store_type; |
| 264 | static PyTypeObject *Del_type; |
| 265 | static PyTypeObject *AugLoad_type; |
| 266 | static PyTypeObject *AugStore_type; |
| 267 | static PyTypeObject *Param_type; |
| 268 | static PyTypeObject *slice_type; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 269 | static PyObject* ast2obj_slice(void*); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 270 | static PyTypeObject *Slice_type; |
| 271 | static char *Slice_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 272 | "lower", |
| 273 | "upper", |
| 274 | "step", |
| 275 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 276 | static PyTypeObject *ExtSlice_type; |
| 277 | static char *ExtSlice_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 278 | "dims", |
| 279 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 280 | static PyTypeObject *Index_type; |
| 281 | static char *Index_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 282 | "value", |
| 283 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 284 | static PyTypeObject *boolop_type; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 285 | static PyObject *And_singleton, *Or_singleton; |
| 286 | static PyObject* ast2obj_boolop(boolop_ty); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 287 | static PyTypeObject *And_type; |
| 288 | static PyTypeObject *Or_type; |
| 289 | static PyTypeObject *operator_type; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 290 | static PyObject *Add_singleton, *Sub_singleton, *Mult_singleton, |
| 291 | *Div_singleton, *Mod_singleton, *Pow_singleton, *LShift_singleton, |
| 292 | *RShift_singleton, *BitOr_singleton, *BitXor_singleton, *BitAnd_singleton, |
| 293 | *FloorDiv_singleton; |
| 294 | static PyObject* ast2obj_operator(operator_ty); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 295 | static PyTypeObject *Add_type; |
| 296 | static PyTypeObject *Sub_type; |
| 297 | static PyTypeObject *Mult_type; |
| 298 | static PyTypeObject *Div_type; |
| 299 | static PyTypeObject *Mod_type; |
| 300 | static PyTypeObject *Pow_type; |
| 301 | static PyTypeObject *LShift_type; |
| 302 | static PyTypeObject *RShift_type; |
| 303 | static PyTypeObject *BitOr_type; |
| 304 | static PyTypeObject *BitXor_type; |
| 305 | static PyTypeObject *BitAnd_type; |
| 306 | static PyTypeObject *FloorDiv_type; |
| 307 | static PyTypeObject *unaryop_type; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 308 | static PyObject *Invert_singleton, *Not_singleton, *UAdd_singleton, |
| 309 | *USub_singleton; |
| 310 | static PyObject* ast2obj_unaryop(unaryop_ty); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 311 | static PyTypeObject *Invert_type; |
| 312 | static PyTypeObject *Not_type; |
| 313 | static PyTypeObject *UAdd_type; |
| 314 | static PyTypeObject *USub_type; |
| 315 | static PyTypeObject *cmpop_type; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 316 | static PyObject *Eq_singleton, *NotEq_singleton, *Lt_singleton, *LtE_singleton, |
| 317 | *Gt_singleton, *GtE_singleton, *Is_singleton, *IsNot_singleton, *In_singleton, |
| 318 | *NotIn_singleton; |
| 319 | static PyObject* ast2obj_cmpop(cmpop_ty); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 320 | static PyTypeObject *Eq_type; |
| 321 | static PyTypeObject *NotEq_type; |
| 322 | static PyTypeObject *Lt_type; |
| 323 | static PyTypeObject *LtE_type; |
| 324 | static PyTypeObject *Gt_type; |
| 325 | static PyTypeObject *GtE_type; |
| 326 | static PyTypeObject *Is_type; |
| 327 | static PyTypeObject *IsNot_type; |
| 328 | static PyTypeObject *In_type; |
| 329 | static PyTypeObject *NotIn_type; |
| 330 | static PyTypeObject *comprehension_type; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 331 | static PyObject* ast2obj_comprehension(void*); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 332 | static char *comprehension_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 333 | "target", |
| 334 | "iter", |
| 335 | "ifs", |
| 336 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 337 | static PyTypeObject *excepthandler_type; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 338 | static PyObject* ast2obj_excepthandler(void*); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 339 | static char *excepthandler_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 340 | "type", |
| 341 | "name", |
| 342 | "body", |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 343 | "lineno", |
| 344 | "col_offset", |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 345 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 346 | static PyTypeObject *arguments_type; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 347 | static PyObject* ast2obj_arguments(void*); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 348 | static char *arguments_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 349 | "args", |
| 350 | "vararg", |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 351 | "varargannotation", |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 352 | "kwonlyargs", |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 353 | "kwarg", |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 354 | "kwargannotation", |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 355 | "defaults", |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 356 | "kw_defaults", |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 357 | }; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 358 | static PyTypeObject *arg_type; |
| 359 | static PyObject* ast2obj_arg(void*); |
| 360 | static PyTypeObject *SimpleArg_type; |
| 361 | static char *SimpleArg_fields[]={ |
| 362 | "arg", |
| 363 | "annotation", |
| 364 | }; |
| 365 | static PyTypeObject *NestedArgs_type; |
| 366 | static char *NestedArgs_fields[]={ |
| 367 | "args", |
| 368 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 369 | static PyTypeObject *keyword_type; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 370 | static PyObject* ast2obj_keyword(void*); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 371 | static char *keyword_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 372 | "arg", |
| 373 | "value", |
| 374 | }; |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 375 | static PyTypeObject *alias_type; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 376 | static PyObject* ast2obj_alias(void*); |
Neal Norwitz | 53d960c | 2006-02-28 22:47:29 +0000 | [diff] [blame] | 377 | static char *alias_fields[]={ |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 378 | "name", |
| 379 | "asname", |
| 380 | }; |
| 381 | |
| 382 | |
| 383 | static PyTypeObject* make_type(char *type, PyTypeObject* base, char**fields, int num_fields) |
| 384 | { |
| 385 | PyObject *fnames, *result; |
| 386 | int i; |
| 387 | if (num_fields) { |
| 388 | fnames = PyTuple_New(num_fields); |
| 389 | if (!fnames) return NULL; |
| 390 | } else { |
| 391 | fnames = Py_None; |
| 392 | Py_INCREF(Py_None); |
| 393 | } |
| 394 | for(i=0; i < num_fields; i++) { |
| 395 | PyObject *field = PyString_FromString(fields[i]); |
| 396 | if (!field) { |
| 397 | Py_DECREF(fnames); |
| 398 | return NULL; |
| 399 | } |
| 400 | PyTuple_SET_ITEM(fnames, i, field); |
| 401 | } |
Thomas Wouters | 34aa7ba | 2006-02-28 19:02:24 +0000 | [diff] [blame] | 402 | result = PyObject_CallFunction((PyObject*)&PyType_Type, "s(O){sOss}", |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 403 | type, base, "_fields", fnames, "__module__", "_ast"); |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 404 | Py_DECREF(fnames); |
| 405 | return (PyTypeObject*)result; |
| 406 | } |
| 407 | |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 408 | static int add_attributes(PyTypeObject* type, char**attrs, int num_fields) |
| 409 | { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 410 | int i, result; |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 411 | PyObject *s, *l = PyList_New(num_fields); |
| 412 | if (!l) return 0; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 413 | for(i = 0; i < num_fields; i++) { |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 414 | s = PyString_FromString(attrs[i]); |
| 415 | if (!s) { |
| 416 | Py_DECREF(l); |
| 417 | return 0; |
| 418 | } |
| 419 | PyList_SET_ITEM(l, i, s); |
| 420 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 421 | result = PyObject_SetAttrString((PyObject*)type, "_attributes", l) >= 0; |
| 422 | Py_DECREF(l); |
| 423 | return result; |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 424 | } |
| 425 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 426 | static PyObject* ast2obj_list(asdl_seq *seq, PyObject* (*func)(void*)) |
| 427 | { |
| 428 | int i, n = asdl_seq_LEN(seq); |
| 429 | PyObject *result = PyList_New(n); |
| 430 | PyObject *value; |
| 431 | if (!result) |
| 432 | return NULL; |
| 433 | for (i = 0; i < n; i++) { |
| 434 | value = func(asdl_seq_GET(seq, i)); |
| 435 | if (!value) { |
| 436 | Py_DECREF(result); |
| 437 | return NULL; |
| 438 | } |
| 439 | PyList_SET_ITEM(result, i, value); |
| 440 | } |
| 441 | return result; |
| 442 | } |
| 443 | |
| 444 | static PyObject* ast2obj_object(void *o) |
| 445 | { |
| 446 | if (!o) |
| 447 | o = Py_None; |
| 448 | Py_INCREF((PyObject*)o); |
| 449 | return (PyObject*)o; |
| 450 | } |
| 451 | #define ast2obj_identifier ast2obj_object |
| 452 | #define ast2obj_string ast2obj_object |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 453 | |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 454 | static PyObject* ast2obj_int(long b) |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 455 | { |
| 456 | return PyInt_FromLong(b); |
| 457 | } |
| 458 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 459 | static int init_types(void) |
| 460 | { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 461 | static int initialized; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 462 | if (initialized) return 1; |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 463 | AST_type = make_type("AST", &PyBaseObject_Type, NULL, 0); |
| 464 | mod_type = make_type("mod", AST_type, NULL, 0); |
| 465 | if (!mod_type) return 0; |
| 466 | if (!add_attributes(mod_type, NULL, 0)) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 467 | Module_type = make_type("Module", mod_type, Module_fields, 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 468 | if (!Module_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 469 | Interactive_type = make_type("Interactive", mod_type, |
| 470 | Interactive_fields, 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 471 | if (!Interactive_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 472 | Expression_type = make_type("Expression", mod_type, Expression_fields, |
| 473 | 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 474 | if (!Expression_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 475 | Suite_type = make_type("Suite", mod_type, Suite_fields, 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 476 | if (!Suite_type) return 0; |
| 477 | stmt_type = make_type("stmt", AST_type, NULL, 0); |
| 478 | if (!stmt_type) return 0; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 479 | if (!add_attributes(stmt_type, stmt_attributes, 2)) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 480 | FunctionDef_type = make_type("FunctionDef", stmt_type, |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 481 | FunctionDef_fields, 5); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 482 | if (!FunctionDef_type) return 0; |
Guido van Rossum | 52cc1d8 | 2007-03-18 15:41:51 +0000 | [diff] [blame^] | 483 | ClassDef_type = make_type("ClassDef", stmt_type, ClassDef_fields, 6); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 484 | if (!ClassDef_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 485 | Return_type = make_type("Return", stmt_type, Return_fields, 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 486 | if (!Return_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 487 | Delete_type = make_type("Delete", stmt_type, Delete_fields, 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 488 | if (!Delete_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 489 | Assign_type = make_type("Assign", stmt_type, Assign_fields, 2); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 490 | if (!Assign_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 491 | AugAssign_type = make_type("AugAssign", stmt_type, AugAssign_fields, 3); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 492 | if (!AugAssign_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 493 | For_type = make_type("For", stmt_type, For_fields, 4); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 494 | if (!For_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 495 | While_type = make_type("While", stmt_type, While_fields, 3); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 496 | if (!While_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 497 | If_type = make_type("If", stmt_type, If_fields, 3); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 498 | if (!If_type) return 0; |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 499 | With_type = make_type("With", stmt_type, With_fields, 3); |
| 500 | if (!With_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 501 | Raise_type = make_type("Raise", stmt_type, Raise_fields, 3); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 502 | if (!Raise_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 503 | TryExcept_type = make_type("TryExcept", stmt_type, TryExcept_fields, 3); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 504 | if (!TryExcept_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 505 | TryFinally_type = make_type("TryFinally", stmt_type, TryFinally_fields, |
| 506 | 2); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 507 | if (!TryFinally_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 508 | Assert_type = make_type("Assert", stmt_type, Assert_fields, 2); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 509 | if (!Assert_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 510 | Import_type = make_type("Import", stmt_type, Import_fields, 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 511 | if (!Import_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 512 | ImportFrom_type = make_type("ImportFrom", stmt_type, ImportFrom_fields, |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 513 | 3); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 514 | if (!ImportFrom_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 515 | Global_type = make_type("Global", stmt_type, Global_fields, 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 516 | if (!Global_type) return 0; |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 517 | Nonlocal_type = make_type("Nonlocal", stmt_type, Nonlocal_fields, 1); |
| 518 | if (!Nonlocal_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 519 | Expr_type = make_type("Expr", stmt_type, Expr_fields, 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 520 | if (!Expr_type) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 521 | Pass_type = make_type("Pass", stmt_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 522 | if (!Pass_type) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 523 | Break_type = make_type("Break", stmt_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 524 | if (!Break_type) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 525 | Continue_type = make_type("Continue", stmt_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 526 | if (!Continue_type) return 0; |
| 527 | expr_type = make_type("expr", AST_type, NULL, 0); |
| 528 | if (!expr_type) return 0; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 529 | if (!add_attributes(expr_type, expr_attributes, 2)) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 530 | BoolOp_type = make_type("BoolOp", expr_type, BoolOp_fields, 2); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 531 | if (!BoolOp_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 532 | BinOp_type = make_type("BinOp", expr_type, BinOp_fields, 3); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 533 | if (!BinOp_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 534 | UnaryOp_type = make_type("UnaryOp", expr_type, UnaryOp_fields, 2); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 535 | if (!UnaryOp_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 536 | Lambda_type = make_type("Lambda", expr_type, Lambda_fields, 2); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 537 | if (!Lambda_type) return 0; |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 538 | IfExp_type = make_type("IfExp", expr_type, IfExp_fields, 3); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 539 | if (!IfExp_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 540 | Dict_type = make_type("Dict", expr_type, Dict_fields, 2); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 541 | if (!Dict_type) return 0; |
Guido van Rossum | 86e58e2 | 2006-08-28 15:27:34 +0000 | [diff] [blame] | 542 | Set_type = make_type("Set", expr_type, Set_fields, 1); |
| 543 | if (!Set_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 544 | ListComp_type = make_type("ListComp", expr_type, ListComp_fields, 2); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 545 | if (!ListComp_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 546 | GeneratorExp_type = make_type("GeneratorExp", expr_type, |
| 547 | GeneratorExp_fields, 2); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 548 | if (!GeneratorExp_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 549 | Yield_type = make_type("Yield", expr_type, Yield_fields, 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 550 | if (!Yield_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 551 | Compare_type = make_type("Compare", expr_type, Compare_fields, 3); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 552 | if (!Compare_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 553 | Call_type = make_type("Call", expr_type, Call_fields, 5); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 554 | if (!Call_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 555 | Num_type = make_type("Num", expr_type, Num_fields, 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 556 | if (!Num_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 557 | Str_type = make_type("Str", expr_type, Str_fields, 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 558 | if (!Str_type) return 0; |
Thomas Wouters | 00e41de | 2007-02-23 19:56:57 +0000 | [diff] [blame] | 559 | Bytes_type = make_type("Bytes", expr_type, Bytes_fields, 1); |
| 560 | if (!Bytes_type) return 0; |
Georg Brandl | 52318d6 | 2006-09-06 07:06:08 +0000 | [diff] [blame] | 561 | Ellipsis_type = make_type("Ellipsis", expr_type, NULL, 0); |
| 562 | if (!Ellipsis_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 563 | Attribute_type = make_type("Attribute", expr_type, Attribute_fields, 3); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 564 | if (!Attribute_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 565 | Subscript_type = make_type("Subscript", expr_type, Subscript_fields, 3); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 566 | if (!Subscript_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 567 | Name_type = make_type("Name", expr_type, Name_fields, 2); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 568 | if (!Name_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 569 | List_type = make_type("List", expr_type, List_fields, 2); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 570 | if (!List_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 571 | Tuple_type = make_type("Tuple", expr_type, Tuple_fields, 2); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 572 | if (!Tuple_type) return 0; |
| 573 | expr_context_type = make_type("expr_context", AST_type, NULL, 0); |
| 574 | if (!expr_context_type) return 0; |
| 575 | if (!add_attributes(expr_context_type, NULL, 0)) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 576 | Load_type = make_type("Load", expr_context_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 577 | if (!Load_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 578 | Load_singleton = PyType_GenericNew(Load_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 579 | if (!Load_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 580 | Store_type = make_type("Store", expr_context_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 581 | if (!Store_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 582 | Store_singleton = PyType_GenericNew(Store_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 583 | if (!Store_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 584 | Del_type = make_type("Del", expr_context_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 585 | if (!Del_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 586 | Del_singleton = PyType_GenericNew(Del_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 587 | if (!Del_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 588 | AugLoad_type = make_type("AugLoad", expr_context_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 589 | if (!AugLoad_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 590 | AugLoad_singleton = PyType_GenericNew(AugLoad_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 591 | if (!AugLoad_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 592 | AugStore_type = make_type("AugStore", expr_context_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 593 | if (!AugStore_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 594 | AugStore_singleton = PyType_GenericNew(AugStore_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 595 | if (!AugStore_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 596 | Param_type = make_type("Param", expr_context_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 597 | if (!Param_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 598 | Param_singleton = PyType_GenericNew(Param_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 599 | if (!Param_singleton) return 0; |
| 600 | slice_type = make_type("slice", AST_type, NULL, 0); |
| 601 | if (!slice_type) return 0; |
| 602 | if (!add_attributes(slice_type, NULL, 0)) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 603 | Slice_type = make_type("Slice", slice_type, Slice_fields, 3); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 604 | if (!Slice_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 605 | ExtSlice_type = make_type("ExtSlice", slice_type, ExtSlice_fields, 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 606 | if (!ExtSlice_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 607 | Index_type = make_type("Index", slice_type, Index_fields, 1); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 608 | if (!Index_type) return 0; |
| 609 | boolop_type = make_type("boolop", AST_type, NULL, 0); |
| 610 | if (!boolop_type) return 0; |
| 611 | if (!add_attributes(boolop_type, NULL, 0)) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 612 | And_type = make_type("And", boolop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 613 | if (!And_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 614 | And_singleton = PyType_GenericNew(And_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 615 | if (!And_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 616 | Or_type = make_type("Or", boolop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 617 | if (!Or_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 618 | Or_singleton = PyType_GenericNew(Or_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 619 | if (!Or_singleton) return 0; |
| 620 | operator_type = make_type("operator", AST_type, NULL, 0); |
| 621 | if (!operator_type) return 0; |
| 622 | if (!add_attributes(operator_type, NULL, 0)) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 623 | Add_type = make_type("Add", operator_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 624 | if (!Add_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 625 | Add_singleton = PyType_GenericNew(Add_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 626 | if (!Add_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 627 | Sub_type = make_type("Sub", operator_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 628 | if (!Sub_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 629 | Sub_singleton = PyType_GenericNew(Sub_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 630 | if (!Sub_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 631 | Mult_type = make_type("Mult", operator_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 632 | if (!Mult_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 633 | Mult_singleton = PyType_GenericNew(Mult_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 634 | if (!Mult_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 635 | Div_type = make_type("Div", operator_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 636 | if (!Div_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 637 | Div_singleton = PyType_GenericNew(Div_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 638 | if (!Div_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 639 | Mod_type = make_type("Mod", operator_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 640 | if (!Mod_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 641 | Mod_singleton = PyType_GenericNew(Mod_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 642 | if (!Mod_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 643 | Pow_type = make_type("Pow", operator_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 644 | if (!Pow_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 645 | Pow_singleton = PyType_GenericNew(Pow_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 646 | if (!Pow_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 647 | LShift_type = make_type("LShift", operator_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 648 | if (!LShift_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 649 | LShift_singleton = PyType_GenericNew(LShift_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 650 | if (!LShift_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 651 | RShift_type = make_type("RShift", operator_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 652 | if (!RShift_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 653 | RShift_singleton = PyType_GenericNew(RShift_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 654 | if (!RShift_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 655 | BitOr_type = make_type("BitOr", operator_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 656 | if (!BitOr_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 657 | BitOr_singleton = PyType_GenericNew(BitOr_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 658 | if (!BitOr_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 659 | BitXor_type = make_type("BitXor", operator_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 660 | if (!BitXor_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 661 | BitXor_singleton = PyType_GenericNew(BitXor_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 662 | if (!BitXor_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 663 | BitAnd_type = make_type("BitAnd", operator_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 664 | if (!BitAnd_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 665 | BitAnd_singleton = PyType_GenericNew(BitAnd_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 666 | if (!BitAnd_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 667 | FloorDiv_type = make_type("FloorDiv", operator_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 668 | if (!FloorDiv_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 669 | FloorDiv_singleton = PyType_GenericNew(FloorDiv_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 670 | if (!FloorDiv_singleton) return 0; |
| 671 | unaryop_type = make_type("unaryop", AST_type, NULL, 0); |
| 672 | if (!unaryop_type) return 0; |
| 673 | if (!add_attributes(unaryop_type, NULL, 0)) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 674 | Invert_type = make_type("Invert", unaryop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 675 | if (!Invert_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 676 | Invert_singleton = PyType_GenericNew(Invert_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 677 | if (!Invert_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 678 | Not_type = make_type("Not", unaryop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 679 | if (!Not_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 680 | Not_singleton = PyType_GenericNew(Not_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 681 | if (!Not_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 682 | UAdd_type = make_type("UAdd", unaryop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 683 | if (!UAdd_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 684 | UAdd_singleton = PyType_GenericNew(UAdd_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 685 | if (!UAdd_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 686 | USub_type = make_type("USub", unaryop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 687 | if (!USub_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 688 | USub_singleton = PyType_GenericNew(USub_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 689 | if (!USub_singleton) return 0; |
| 690 | cmpop_type = make_type("cmpop", AST_type, NULL, 0); |
| 691 | if (!cmpop_type) return 0; |
| 692 | if (!add_attributes(cmpop_type, NULL, 0)) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 693 | Eq_type = make_type("Eq", cmpop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 694 | if (!Eq_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 695 | Eq_singleton = PyType_GenericNew(Eq_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 696 | if (!Eq_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 697 | NotEq_type = make_type("NotEq", cmpop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 698 | if (!NotEq_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 699 | NotEq_singleton = PyType_GenericNew(NotEq_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 700 | if (!NotEq_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 701 | Lt_type = make_type("Lt", cmpop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 702 | if (!Lt_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 703 | Lt_singleton = PyType_GenericNew(Lt_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 704 | if (!Lt_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 705 | LtE_type = make_type("LtE", cmpop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 706 | if (!LtE_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 707 | LtE_singleton = PyType_GenericNew(LtE_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 708 | if (!LtE_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 709 | Gt_type = make_type("Gt", cmpop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 710 | if (!Gt_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 711 | Gt_singleton = PyType_GenericNew(Gt_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 712 | if (!Gt_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 713 | GtE_type = make_type("GtE", cmpop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 714 | if (!GtE_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 715 | GtE_singleton = PyType_GenericNew(GtE_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 716 | if (!GtE_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 717 | Is_type = make_type("Is", cmpop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 718 | if (!Is_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 719 | Is_singleton = PyType_GenericNew(Is_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 720 | if (!Is_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 721 | IsNot_type = make_type("IsNot", cmpop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 722 | if (!IsNot_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 723 | IsNot_singleton = PyType_GenericNew(IsNot_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 724 | if (!IsNot_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 725 | In_type = make_type("In", cmpop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 726 | if (!In_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 727 | In_singleton = PyType_GenericNew(In_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 728 | if (!In_singleton) return 0; |
Martin v. Löwis | 8d0701d | 2006-02-26 23:40:20 +0000 | [diff] [blame] | 729 | NotIn_type = make_type("NotIn", cmpop_type, NULL, 0); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 730 | if (!NotIn_type) return 0; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 731 | NotIn_singleton = PyType_GenericNew(NotIn_type, NULL, NULL); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 732 | if (!NotIn_singleton) return 0; |
| 733 | comprehension_type = make_type("comprehension", AST_type, |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 734 | comprehension_fields, 3); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 735 | if (!comprehension_type) return 0; |
| 736 | excepthandler_type = make_type("excepthandler", AST_type, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 737 | excepthandler_fields, 5); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 738 | if (!excepthandler_type) return 0; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 739 | arguments_type = make_type("arguments", AST_type, arguments_fields, 8); |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 740 | if (!arguments_type) return 0; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 741 | arg_type = make_type("arg", AST_type, NULL, 0); |
| 742 | if (!arg_type) return 0; |
| 743 | if (!add_attributes(arg_type, NULL, 0)) return 0; |
| 744 | SimpleArg_type = make_type("SimpleArg", arg_type, SimpleArg_fields, 2); |
| 745 | if (!SimpleArg_type) return 0; |
| 746 | NestedArgs_type = make_type("NestedArgs", arg_type, NestedArgs_fields, |
| 747 | 1); |
| 748 | if (!NestedArgs_type) return 0; |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 749 | keyword_type = make_type("keyword", AST_type, keyword_fields, 2); |
| 750 | if (!keyword_type) return 0; |
| 751 | alias_type = make_type("alias", AST_type, alias_fields, 2); |
| 752 | if (!alias_type) return 0; |
| 753 | initialized = 1; |
| 754 | return 1; |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 755 | } |
Neal Norwitz | 7b5a604 | 2005-11-13 19:14:20 +0000 | [diff] [blame] | 756 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 757 | mod_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 758 | Module(asdl_seq * body, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 759 | { |
| 760 | mod_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 761 | p = (mod_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 762 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 763 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 764 | p->kind = Module_kind; |
| 765 | p->v.Module.body = body; |
| 766 | return p; |
| 767 | } |
| 768 | |
| 769 | mod_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 770 | Interactive(asdl_seq * body, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 771 | { |
| 772 | mod_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 773 | p = (mod_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 774 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 775 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 776 | p->kind = Interactive_kind; |
| 777 | p->v.Interactive.body = body; |
| 778 | return p; |
| 779 | } |
| 780 | |
| 781 | mod_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 782 | Expression(expr_ty body, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 783 | { |
| 784 | mod_ty p; |
| 785 | if (!body) { |
| 786 | PyErr_SetString(PyExc_ValueError, |
| 787 | "field body is required for Expression"); |
| 788 | return NULL; |
| 789 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 790 | p = (mod_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 791 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 792 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 793 | p->kind = Expression_kind; |
| 794 | p->v.Expression.body = body; |
| 795 | return p; |
| 796 | } |
| 797 | |
| 798 | mod_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 799 | Suite(asdl_seq * body, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 800 | { |
| 801 | mod_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 802 | p = (mod_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 803 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 804 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 805 | p->kind = Suite_kind; |
| 806 | p->v.Suite.body = body; |
| 807 | return p; |
| 808 | } |
| 809 | |
| 810 | stmt_ty |
| 811 | FunctionDef(identifier name, arguments_ty args, asdl_seq * body, asdl_seq * |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 812 | decorators, expr_ty returns, int lineno, int col_offset, PyArena |
| 813 | *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 814 | { |
| 815 | stmt_ty p; |
| 816 | if (!name) { |
| 817 | PyErr_SetString(PyExc_ValueError, |
| 818 | "field name is required for FunctionDef"); |
| 819 | return NULL; |
| 820 | } |
| 821 | if (!args) { |
| 822 | PyErr_SetString(PyExc_ValueError, |
| 823 | "field args is required for FunctionDef"); |
| 824 | return NULL; |
| 825 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 826 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 827 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 828 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 829 | p->kind = FunctionDef_kind; |
| 830 | p->v.FunctionDef.name = name; |
| 831 | p->v.FunctionDef.args = args; |
| 832 | p->v.FunctionDef.body = body; |
| 833 | p->v.FunctionDef.decorators = decorators; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 834 | p->v.FunctionDef.returns = returns; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 835 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 836 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 837 | return p; |
| 838 | } |
| 839 | |
| 840 | stmt_ty |
Guido van Rossum | 52cc1d8 | 2007-03-18 15:41:51 +0000 | [diff] [blame^] | 841 | ClassDef(identifier name, asdl_seq * bases, asdl_seq * keywords, expr_ty |
| 842 | starargs, expr_ty kwargs, asdl_seq * body, int lineno, int col_offset, |
| 843 | PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 844 | { |
| 845 | stmt_ty p; |
| 846 | if (!name) { |
| 847 | PyErr_SetString(PyExc_ValueError, |
| 848 | "field name is required for ClassDef"); |
| 849 | return NULL; |
| 850 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 851 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 852 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 853 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 854 | p->kind = ClassDef_kind; |
| 855 | p->v.ClassDef.name = name; |
| 856 | p->v.ClassDef.bases = bases; |
Guido van Rossum | 52cc1d8 | 2007-03-18 15:41:51 +0000 | [diff] [blame^] | 857 | p->v.ClassDef.keywords = keywords; |
| 858 | p->v.ClassDef.starargs = starargs; |
| 859 | p->v.ClassDef.kwargs = kwargs; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 860 | p->v.ClassDef.body = body; |
| 861 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 862 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 863 | return p; |
| 864 | } |
| 865 | |
| 866 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 867 | Return(expr_ty value, int lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 868 | { |
| 869 | stmt_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 870 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 871 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 872 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 873 | p->kind = Return_kind; |
| 874 | p->v.Return.value = value; |
| 875 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 876 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 877 | return p; |
| 878 | } |
| 879 | |
| 880 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 881 | Delete(asdl_seq * targets, int lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 882 | { |
| 883 | stmt_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 884 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 885 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 886 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 887 | p->kind = Delete_kind; |
| 888 | p->v.Delete.targets = targets; |
| 889 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 890 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 891 | return p; |
| 892 | } |
| 893 | |
| 894 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 895 | Assign(asdl_seq * targets, expr_ty value, int lineno, int col_offset, PyArena |
| 896 | *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 897 | { |
| 898 | stmt_ty p; |
| 899 | if (!value) { |
| 900 | PyErr_SetString(PyExc_ValueError, |
| 901 | "field value is required for Assign"); |
| 902 | return NULL; |
| 903 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 904 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 905 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 906 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 907 | p->kind = Assign_kind; |
| 908 | p->v.Assign.targets = targets; |
| 909 | p->v.Assign.value = value; |
| 910 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 911 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 912 | return p; |
| 913 | } |
| 914 | |
| 915 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 916 | AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int |
| 917 | col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 918 | { |
| 919 | stmt_ty p; |
| 920 | if (!target) { |
| 921 | PyErr_SetString(PyExc_ValueError, |
| 922 | "field target is required for AugAssign"); |
| 923 | return NULL; |
| 924 | } |
| 925 | if (!op) { |
| 926 | PyErr_SetString(PyExc_ValueError, |
| 927 | "field op is required for AugAssign"); |
| 928 | return NULL; |
| 929 | } |
| 930 | if (!value) { |
| 931 | PyErr_SetString(PyExc_ValueError, |
| 932 | "field value is required for AugAssign"); |
| 933 | return NULL; |
| 934 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 935 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 936 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 937 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 938 | p->kind = AugAssign_kind; |
| 939 | p->v.AugAssign.target = target; |
| 940 | p->v.AugAssign.op = op; |
| 941 | p->v.AugAssign.value = value; |
| 942 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 943 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 944 | return p; |
| 945 | } |
| 946 | |
| 947 | stmt_ty |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 948 | For(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq * orelse, int |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 949 | lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 950 | { |
| 951 | stmt_ty p; |
| 952 | if (!target) { |
| 953 | PyErr_SetString(PyExc_ValueError, |
| 954 | "field target is required for For"); |
| 955 | return NULL; |
| 956 | } |
| 957 | if (!iter) { |
| 958 | PyErr_SetString(PyExc_ValueError, |
| 959 | "field iter is required for For"); |
| 960 | return NULL; |
| 961 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 962 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 963 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 964 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 965 | p->kind = For_kind; |
| 966 | p->v.For.target = target; |
| 967 | p->v.For.iter = iter; |
| 968 | p->v.For.body = body; |
| 969 | p->v.For.orelse = orelse; |
| 970 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 971 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 972 | return p; |
| 973 | } |
| 974 | |
| 975 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 976 | While(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, int |
| 977 | col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 978 | { |
| 979 | stmt_ty p; |
| 980 | if (!test) { |
| 981 | PyErr_SetString(PyExc_ValueError, |
| 982 | "field test is required for While"); |
| 983 | return NULL; |
| 984 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 985 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 986 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 987 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 988 | p->kind = While_kind; |
| 989 | p->v.While.test = test; |
| 990 | p->v.While.body = body; |
| 991 | p->v.While.orelse = orelse; |
| 992 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 993 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 994 | return p; |
| 995 | } |
| 996 | |
| 997 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 998 | If(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, int |
| 999 | col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1000 | { |
| 1001 | stmt_ty p; |
| 1002 | if (!test) { |
| 1003 | PyErr_SetString(PyExc_ValueError, |
| 1004 | "field test is required for If"); |
| 1005 | return NULL; |
| 1006 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1007 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1008 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1009 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1010 | p->kind = If_kind; |
| 1011 | p->v.If.test = test; |
| 1012 | p->v.If.body = body; |
| 1013 | p->v.If.orelse = orelse; |
| 1014 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1015 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1016 | return p; |
| 1017 | } |
| 1018 | |
| 1019 | stmt_ty |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 1020 | With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body, int lineno, |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1021 | int col_offset, PyArena *arena) |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 1022 | { |
| 1023 | stmt_ty p; |
| 1024 | if (!context_expr) { |
| 1025 | PyErr_SetString(PyExc_ValueError, |
| 1026 | "field context_expr is required for With"); |
| 1027 | return NULL; |
| 1028 | } |
| 1029 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1030 | if (!p) |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 1031 | return NULL; |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 1032 | p->kind = With_kind; |
| 1033 | p->v.With.context_expr = context_expr; |
| 1034 | p->v.With.optional_vars = optional_vars; |
| 1035 | p->v.With.body = body; |
| 1036 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1037 | p->col_offset = col_offset; |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 1038 | return p; |
| 1039 | } |
| 1040 | |
| 1041 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1042 | Raise(expr_ty type, expr_ty inst, expr_ty tback, int lineno, int col_offset, |
| 1043 | PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1044 | { |
| 1045 | stmt_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1046 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1047 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1048 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1049 | p->kind = Raise_kind; |
| 1050 | p->v.Raise.type = type; |
| 1051 | p->v.Raise.inst = inst; |
| 1052 | p->v.Raise.tback = tback; |
| 1053 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1054 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1055 | return p; |
| 1056 | } |
| 1057 | |
| 1058 | stmt_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1059 | TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse, int lineno, |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1060 | int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1061 | { |
| 1062 | stmt_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1063 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1064 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1065 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1066 | p->kind = TryExcept_kind; |
| 1067 | p->v.TryExcept.body = body; |
| 1068 | p->v.TryExcept.handlers = handlers; |
| 1069 | p->v.TryExcept.orelse = orelse; |
| 1070 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1071 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1072 | return p; |
| 1073 | } |
| 1074 | |
| 1075 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1076 | TryFinally(asdl_seq * body, asdl_seq * finalbody, int lineno, int col_offset, |
| 1077 | PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1078 | { |
| 1079 | stmt_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1080 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1081 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1082 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1083 | p->kind = TryFinally_kind; |
| 1084 | p->v.TryFinally.body = body; |
| 1085 | p->v.TryFinally.finalbody = finalbody; |
| 1086 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1087 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1088 | return p; |
| 1089 | } |
| 1090 | |
| 1091 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1092 | Assert(expr_ty test, expr_ty msg, int lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1093 | { |
| 1094 | stmt_ty p; |
| 1095 | if (!test) { |
| 1096 | PyErr_SetString(PyExc_ValueError, |
| 1097 | "field test is required for Assert"); |
| 1098 | return NULL; |
| 1099 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1100 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1101 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1102 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1103 | p->kind = Assert_kind; |
| 1104 | p->v.Assert.test = test; |
| 1105 | p->v.Assert.msg = msg; |
| 1106 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1107 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1108 | return p; |
| 1109 | } |
| 1110 | |
| 1111 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1112 | Import(asdl_seq * names, int lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1113 | { |
| 1114 | stmt_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1115 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1116 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1117 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1118 | p->kind = Import_kind; |
| 1119 | p->v.Import.names = names; |
| 1120 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1121 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1122 | return p; |
| 1123 | } |
| 1124 | |
| 1125 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1126 | ImportFrom(identifier module, asdl_seq * names, int level, int lineno, int |
| 1127 | col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1128 | { |
| 1129 | stmt_ty p; |
| 1130 | if (!module) { |
| 1131 | PyErr_SetString(PyExc_ValueError, |
| 1132 | "field module is required for ImportFrom"); |
| 1133 | return NULL; |
| 1134 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1135 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1136 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1137 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1138 | p->kind = ImportFrom_kind; |
| 1139 | p->v.ImportFrom.module = module; |
| 1140 | p->v.ImportFrom.names = names; |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 1141 | p->v.ImportFrom.level = level; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1142 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1143 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1144 | return p; |
| 1145 | } |
| 1146 | |
| 1147 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1148 | Global(asdl_seq * names, int lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1149 | { |
| 1150 | stmt_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1151 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1152 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1153 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1154 | p->kind = Global_kind; |
| 1155 | p->v.Global.names = names; |
| 1156 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1157 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1158 | return p; |
| 1159 | } |
| 1160 | |
| 1161 | stmt_ty |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 1162 | Nonlocal(asdl_seq * names, int lineno, int col_offset, PyArena *arena) |
| 1163 | { |
| 1164 | stmt_ty p; |
| 1165 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
| 1166 | if (!p) |
| 1167 | return NULL; |
| 1168 | p->kind = Nonlocal_kind; |
| 1169 | p->v.Nonlocal.names = names; |
| 1170 | p->lineno = lineno; |
| 1171 | p->col_offset = col_offset; |
| 1172 | return p; |
| 1173 | } |
| 1174 | |
| 1175 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1176 | Expr(expr_ty value, int lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1177 | { |
| 1178 | stmt_ty p; |
| 1179 | if (!value) { |
| 1180 | PyErr_SetString(PyExc_ValueError, |
| 1181 | "field value is required for Expr"); |
| 1182 | return NULL; |
| 1183 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1184 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1185 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1186 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1187 | p->kind = Expr_kind; |
| 1188 | p->v.Expr.value = value; |
| 1189 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1190 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1191 | return p; |
| 1192 | } |
| 1193 | |
| 1194 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1195 | Pass(int lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1196 | { |
| 1197 | stmt_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1198 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1199 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1200 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1201 | p->kind = Pass_kind; |
| 1202 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1203 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1204 | return p; |
| 1205 | } |
| 1206 | |
| 1207 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1208 | Break(int lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1209 | { |
| 1210 | stmt_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1211 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1212 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1213 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1214 | p->kind = Break_kind; |
| 1215 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1216 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1217 | return p; |
| 1218 | } |
| 1219 | |
| 1220 | stmt_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1221 | Continue(int lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1222 | { |
| 1223 | stmt_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1224 | p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1225 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1226 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1227 | p->kind = Continue_kind; |
| 1228 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1229 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1230 | return p; |
| 1231 | } |
| 1232 | |
| 1233 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1234 | BoolOp(boolop_ty op, asdl_seq * values, int lineno, int col_offset, PyArena |
| 1235 | *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1236 | { |
| 1237 | expr_ty p; |
| 1238 | if (!op) { |
| 1239 | PyErr_SetString(PyExc_ValueError, |
| 1240 | "field op is required for BoolOp"); |
| 1241 | return NULL; |
| 1242 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1243 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1244 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1245 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1246 | p->kind = BoolOp_kind; |
| 1247 | p->v.BoolOp.op = op; |
| 1248 | p->v.BoolOp.values = values; |
| 1249 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1250 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1251 | return p; |
| 1252 | } |
| 1253 | |
| 1254 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1255 | BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int col_offset, |
| 1256 | PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1257 | { |
| 1258 | expr_ty p; |
| 1259 | if (!left) { |
| 1260 | PyErr_SetString(PyExc_ValueError, |
| 1261 | "field left is required for BinOp"); |
| 1262 | return NULL; |
| 1263 | } |
| 1264 | if (!op) { |
| 1265 | PyErr_SetString(PyExc_ValueError, |
| 1266 | "field op is required for BinOp"); |
| 1267 | return NULL; |
| 1268 | } |
| 1269 | if (!right) { |
| 1270 | PyErr_SetString(PyExc_ValueError, |
| 1271 | "field right is required for BinOp"); |
| 1272 | return NULL; |
| 1273 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1274 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1275 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1276 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1277 | p->kind = BinOp_kind; |
| 1278 | p->v.BinOp.left = left; |
| 1279 | p->v.BinOp.op = op; |
| 1280 | p->v.BinOp.right = right; |
| 1281 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1282 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1283 | return p; |
| 1284 | } |
| 1285 | |
| 1286 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1287 | UnaryOp(unaryop_ty op, expr_ty operand, int lineno, int col_offset, PyArena |
| 1288 | *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1289 | { |
| 1290 | expr_ty p; |
| 1291 | if (!op) { |
| 1292 | PyErr_SetString(PyExc_ValueError, |
| 1293 | "field op is required for UnaryOp"); |
| 1294 | return NULL; |
| 1295 | } |
| 1296 | if (!operand) { |
| 1297 | PyErr_SetString(PyExc_ValueError, |
| 1298 | "field operand is required for UnaryOp"); |
| 1299 | return NULL; |
| 1300 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1301 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1302 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1303 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1304 | p->kind = UnaryOp_kind; |
| 1305 | p->v.UnaryOp.op = op; |
| 1306 | p->v.UnaryOp.operand = operand; |
| 1307 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1308 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1309 | return p; |
| 1310 | } |
| 1311 | |
| 1312 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1313 | Lambda(arguments_ty args, expr_ty body, int lineno, int col_offset, PyArena |
| 1314 | *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1315 | { |
| 1316 | expr_ty p; |
| 1317 | if (!args) { |
| 1318 | PyErr_SetString(PyExc_ValueError, |
| 1319 | "field args is required for Lambda"); |
| 1320 | return NULL; |
| 1321 | } |
| 1322 | if (!body) { |
| 1323 | PyErr_SetString(PyExc_ValueError, |
| 1324 | "field body is required for Lambda"); |
| 1325 | return NULL; |
| 1326 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1327 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1328 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1329 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1330 | p->kind = Lambda_kind; |
| 1331 | p->v.Lambda.args = args; |
| 1332 | p->v.Lambda.body = body; |
| 1333 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1334 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1335 | return p; |
| 1336 | } |
| 1337 | |
| 1338 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1339 | IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int col_offset, |
| 1340 | PyArena *arena) |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 1341 | { |
| 1342 | expr_ty p; |
| 1343 | if (!test) { |
| 1344 | PyErr_SetString(PyExc_ValueError, |
| 1345 | "field test is required for IfExp"); |
| 1346 | return NULL; |
| 1347 | } |
| 1348 | if (!body) { |
| 1349 | PyErr_SetString(PyExc_ValueError, |
| 1350 | "field body is required for IfExp"); |
| 1351 | return NULL; |
| 1352 | } |
| 1353 | if (!orelse) { |
| 1354 | PyErr_SetString(PyExc_ValueError, |
| 1355 | "field orelse is required for IfExp"); |
| 1356 | return NULL; |
| 1357 | } |
| 1358 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1359 | if (!p) |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 1360 | return NULL; |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 1361 | p->kind = IfExp_kind; |
| 1362 | p->v.IfExp.test = test; |
| 1363 | p->v.IfExp.body = body; |
| 1364 | p->v.IfExp.orelse = orelse; |
| 1365 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1366 | p->col_offset = col_offset; |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 1367 | return p; |
| 1368 | } |
| 1369 | |
| 1370 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1371 | Dict(asdl_seq * keys, asdl_seq * values, int lineno, int col_offset, PyArena |
| 1372 | *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1373 | { |
| 1374 | expr_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1375 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1376 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1377 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1378 | p->kind = Dict_kind; |
| 1379 | p->v.Dict.keys = keys; |
| 1380 | p->v.Dict.values = values; |
| 1381 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1382 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1383 | return p; |
| 1384 | } |
| 1385 | |
| 1386 | expr_ty |
Guido van Rossum | 86e58e2 | 2006-08-28 15:27:34 +0000 | [diff] [blame] | 1387 | Set(asdl_seq * elts, int lineno, int col_offset, PyArena *arena) |
| 1388 | { |
| 1389 | expr_ty p; |
| 1390 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1391 | if (!p) |
Guido van Rossum | 86e58e2 | 2006-08-28 15:27:34 +0000 | [diff] [blame] | 1392 | return NULL; |
Guido van Rossum | 86e58e2 | 2006-08-28 15:27:34 +0000 | [diff] [blame] | 1393 | p->kind = Set_kind; |
| 1394 | p->v.Set.elts = elts; |
| 1395 | p->lineno = lineno; |
| 1396 | p->col_offset = col_offset; |
| 1397 | return p; |
| 1398 | } |
| 1399 | |
| 1400 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1401 | ListComp(expr_ty elt, asdl_seq * generators, int lineno, int col_offset, |
| 1402 | PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1403 | { |
| 1404 | expr_ty p; |
| 1405 | if (!elt) { |
| 1406 | PyErr_SetString(PyExc_ValueError, |
| 1407 | "field elt is required for ListComp"); |
| 1408 | return NULL; |
| 1409 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1410 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1411 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1412 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1413 | p->kind = ListComp_kind; |
| 1414 | p->v.ListComp.elt = elt; |
| 1415 | p->v.ListComp.generators = generators; |
| 1416 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1417 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1418 | return p; |
| 1419 | } |
| 1420 | |
| 1421 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1422 | GeneratorExp(expr_ty elt, asdl_seq * generators, int lineno, int col_offset, |
| 1423 | PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1424 | { |
| 1425 | expr_ty p; |
| 1426 | if (!elt) { |
| 1427 | PyErr_SetString(PyExc_ValueError, |
| 1428 | "field elt is required for GeneratorExp"); |
| 1429 | return NULL; |
| 1430 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1431 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1432 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1433 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1434 | p->kind = GeneratorExp_kind; |
| 1435 | p->v.GeneratorExp.elt = elt; |
| 1436 | p->v.GeneratorExp.generators = generators; |
| 1437 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1438 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1439 | return p; |
| 1440 | } |
| 1441 | |
| 1442 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1443 | Yield(expr_ty value, int lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1444 | { |
| 1445 | expr_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1446 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1447 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1448 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1449 | p->kind = Yield_kind; |
| 1450 | p->v.Yield.value = value; |
| 1451 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1452 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1453 | return p; |
| 1454 | } |
| 1455 | |
| 1456 | expr_ty |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1457 | Compare(expr_ty left, asdl_int_seq * ops, asdl_seq * comparators, int lineno, |
| 1458 | int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1459 | { |
| 1460 | expr_ty p; |
| 1461 | if (!left) { |
| 1462 | PyErr_SetString(PyExc_ValueError, |
| 1463 | "field left is required for Compare"); |
| 1464 | return NULL; |
| 1465 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1466 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1467 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1468 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1469 | p->kind = Compare_kind; |
| 1470 | p->v.Compare.left = left; |
| 1471 | p->v.Compare.ops = ops; |
| 1472 | p->v.Compare.comparators = comparators; |
| 1473 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1474 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1475 | return p; |
| 1476 | } |
| 1477 | |
| 1478 | expr_ty |
| 1479 | Call(expr_ty func, asdl_seq * args, asdl_seq * keywords, expr_ty starargs, |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1480 | expr_ty kwargs, int lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1481 | { |
| 1482 | expr_ty p; |
| 1483 | if (!func) { |
| 1484 | PyErr_SetString(PyExc_ValueError, |
| 1485 | "field func is required for Call"); |
| 1486 | return NULL; |
| 1487 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1488 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1489 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1490 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1491 | p->kind = Call_kind; |
| 1492 | p->v.Call.func = func; |
| 1493 | p->v.Call.args = args; |
| 1494 | p->v.Call.keywords = keywords; |
| 1495 | p->v.Call.starargs = starargs; |
| 1496 | p->v.Call.kwargs = kwargs; |
| 1497 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1498 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1499 | return p; |
| 1500 | } |
| 1501 | |
| 1502 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1503 | Num(object n, int lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1504 | { |
| 1505 | expr_ty p; |
| 1506 | if (!n) { |
| 1507 | PyErr_SetString(PyExc_ValueError, |
| 1508 | "field n is required for Num"); |
| 1509 | return NULL; |
| 1510 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1511 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1512 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1513 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1514 | p->kind = Num_kind; |
| 1515 | p->v.Num.n = n; |
| 1516 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1517 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1518 | return p; |
| 1519 | } |
| 1520 | |
| 1521 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1522 | Str(string s, int lineno, int col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1523 | { |
| 1524 | expr_ty p; |
| 1525 | if (!s) { |
| 1526 | PyErr_SetString(PyExc_ValueError, |
| 1527 | "field s is required for Str"); |
| 1528 | return NULL; |
| 1529 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1530 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1531 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1532 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1533 | p->kind = Str_kind; |
| 1534 | p->v.Str.s = s; |
| 1535 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1536 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1537 | return p; |
| 1538 | } |
| 1539 | |
| 1540 | expr_ty |
Thomas Wouters | 00e41de | 2007-02-23 19:56:57 +0000 | [diff] [blame] | 1541 | Bytes(string s, int lineno, int col_offset, PyArena *arena) |
| 1542 | { |
| 1543 | expr_ty p; |
| 1544 | if (!s) { |
| 1545 | PyErr_SetString(PyExc_ValueError, |
| 1546 | "field s is required for Bytes"); |
| 1547 | return NULL; |
| 1548 | } |
| 1549 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1550 | if (!p) |
Thomas Wouters | 00e41de | 2007-02-23 19:56:57 +0000 | [diff] [blame] | 1551 | return NULL; |
Thomas Wouters | 00e41de | 2007-02-23 19:56:57 +0000 | [diff] [blame] | 1552 | p->kind = Bytes_kind; |
| 1553 | p->v.Bytes.s = s; |
| 1554 | p->lineno = lineno; |
| 1555 | p->col_offset = col_offset; |
| 1556 | return p; |
| 1557 | } |
| 1558 | |
| 1559 | expr_ty |
Georg Brandl | 52318d6 | 2006-09-06 07:06:08 +0000 | [diff] [blame] | 1560 | Ellipsis(int lineno, int col_offset, PyArena *arena) |
| 1561 | { |
| 1562 | expr_ty p; |
| 1563 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1564 | if (!p) |
Georg Brandl | 52318d6 | 2006-09-06 07:06:08 +0000 | [diff] [blame] | 1565 | return NULL; |
Georg Brandl | 52318d6 | 2006-09-06 07:06:08 +0000 | [diff] [blame] | 1566 | p->kind = Ellipsis_kind; |
| 1567 | p->lineno = lineno; |
| 1568 | p->col_offset = col_offset; |
| 1569 | return p; |
| 1570 | } |
| 1571 | |
| 1572 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1573 | Attribute(expr_ty value, identifier attr, expr_context_ty ctx, int lineno, int |
| 1574 | col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1575 | { |
| 1576 | expr_ty p; |
| 1577 | if (!value) { |
| 1578 | PyErr_SetString(PyExc_ValueError, |
| 1579 | "field value is required for Attribute"); |
| 1580 | return NULL; |
| 1581 | } |
| 1582 | if (!attr) { |
| 1583 | PyErr_SetString(PyExc_ValueError, |
| 1584 | "field attr is required for Attribute"); |
| 1585 | return NULL; |
| 1586 | } |
| 1587 | if (!ctx) { |
| 1588 | PyErr_SetString(PyExc_ValueError, |
| 1589 | "field ctx is required for Attribute"); |
| 1590 | return NULL; |
| 1591 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1592 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1593 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1594 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1595 | p->kind = Attribute_kind; |
| 1596 | p->v.Attribute.value = value; |
| 1597 | p->v.Attribute.attr = attr; |
| 1598 | p->v.Attribute.ctx = ctx; |
| 1599 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1600 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1601 | return p; |
| 1602 | } |
| 1603 | |
| 1604 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1605 | Subscript(expr_ty value, slice_ty slice, expr_context_ty ctx, int lineno, int |
| 1606 | col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1607 | { |
| 1608 | expr_ty p; |
| 1609 | if (!value) { |
| 1610 | PyErr_SetString(PyExc_ValueError, |
| 1611 | "field value is required for Subscript"); |
| 1612 | return NULL; |
| 1613 | } |
| 1614 | if (!slice) { |
| 1615 | PyErr_SetString(PyExc_ValueError, |
| 1616 | "field slice is required for Subscript"); |
| 1617 | return NULL; |
| 1618 | } |
| 1619 | if (!ctx) { |
| 1620 | PyErr_SetString(PyExc_ValueError, |
| 1621 | "field ctx is required for Subscript"); |
| 1622 | return NULL; |
| 1623 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1624 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1625 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1626 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1627 | p->kind = Subscript_kind; |
| 1628 | p->v.Subscript.value = value; |
| 1629 | p->v.Subscript.slice = slice; |
| 1630 | p->v.Subscript.ctx = ctx; |
| 1631 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1632 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1633 | return p; |
| 1634 | } |
| 1635 | |
| 1636 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1637 | Name(identifier id, expr_context_ty ctx, int lineno, int col_offset, PyArena |
| 1638 | *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1639 | { |
| 1640 | expr_ty p; |
| 1641 | if (!id) { |
| 1642 | PyErr_SetString(PyExc_ValueError, |
| 1643 | "field id is required for Name"); |
| 1644 | return NULL; |
| 1645 | } |
| 1646 | if (!ctx) { |
| 1647 | PyErr_SetString(PyExc_ValueError, |
| 1648 | "field ctx is required for Name"); |
| 1649 | return NULL; |
| 1650 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1651 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1652 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1653 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1654 | p->kind = Name_kind; |
| 1655 | p->v.Name.id = id; |
| 1656 | p->v.Name.ctx = ctx; |
| 1657 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1658 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1659 | return p; |
| 1660 | } |
| 1661 | |
| 1662 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1663 | List(asdl_seq * elts, expr_context_ty ctx, int lineno, int col_offset, PyArena |
| 1664 | *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1665 | { |
| 1666 | expr_ty p; |
| 1667 | if (!ctx) { |
| 1668 | PyErr_SetString(PyExc_ValueError, |
| 1669 | "field ctx is required for List"); |
| 1670 | return NULL; |
| 1671 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1672 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1673 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1674 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1675 | p->kind = List_kind; |
| 1676 | p->v.List.elts = elts; |
| 1677 | p->v.List.ctx = ctx; |
| 1678 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1679 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1680 | return p; |
| 1681 | } |
| 1682 | |
| 1683 | expr_ty |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1684 | Tuple(asdl_seq * elts, expr_context_ty ctx, int lineno, int col_offset, PyArena |
| 1685 | *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1686 | { |
| 1687 | expr_ty p; |
| 1688 | if (!ctx) { |
| 1689 | PyErr_SetString(PyExc_ValueError, |
| 1690 | "field ctx is required for Tuple"); |
| 1691 | return NULL; |
| 1692 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1693 | p = (expr_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1694 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1695 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1696 | p->kind = Tuple_kind; |
| 1697 | p->v.Tuple.elts = elts; |
| 1698 | p->v.Tuple.ctx = ctx; |
| 1699 | p->lineno = lineno; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1700 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1701 | return p; |
| 1702 | } |
| 1703 | |
| 1704 | slice_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1705 | Slice(expr_ty lower, expr_ty upper, expr_ty step, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1706 | { |
| 1707 | slice_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1708 | p = (slice_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1709 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1710 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1711 | p->kind = Slice_kind; |
| 1712 | p->v.Slice.lower = lower; |
| 1713 | p->v.Slice.upper = upper; |
| 1714 | p->v.Slice.step = step; |
| 1715 | return p; |
| 1716 | } |
| 1717 | |
| 1718 | slice_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1719 | ExtSlice(asdl_seq * dims, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1720 | { |
| 1721 | slice_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1722 | p = (slice_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1723 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1724 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1725 | p->kind = ExtSlice_kind; |
| 1726 | p->v.ExtSlice.dims = dims; |
| 1727 | return p; |
| 1728 | } |
| 1729 | |
| 1730 | slice_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1731 | Index(expr_ty value, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1732 | { |
| 1733 | slice_ty p; |
| 1734 | if (!value) { |
| 1735 | PyErr_SetString(PyExc_ValueError, |
| 1736 | "field value is required for Index"); |
| 1737 | return NULL; |
| 1738 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1739 | p = (slice_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1740 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1741 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1742 | p->kind = Index_kind; |
| 1743 | p->v.Index.value = value; |
| 1744 | return p; |
| 1745 | } |
| 1746 | |
| 1747 | comprehension_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1748 | comprehension(expr_ty target, expr_ty iter, asdl_seq * ifs, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1749 | { |
| 1750 | comprehension_ty p; |
| 1751 | if (!target) { |
| 1752 | PyErr_SetString(PyExc_ValueError, |
| 1753 | "field target is required for comprehension"); |
| 1754 | return NULL; |
| 1755 | } |
| 1756 | if (!iter) { |
| 1757 | PyErr_SetString(PyExc_ValueError, |
| 1758 | "field iter is required for comprehension"); |
| 1759 | return NULL; |
| 1760 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1761 | p = (comprehension_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1762 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1763 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1764 | p->target = target; |
| 1765 | p->iter = iter; |
| 1766 | p->ifs = ifs; |
| 1767 | return p; |
| 1768 | } |
| 1769 | |
| 1770 | excepthandler_ty |
Guido van Rossum | 16be03e | 2007-01-10 18:51:35 +0000 | [diff] [blame] | 1771 | excepthandler(expr_ty type, identifier name, asdl_seq * body, int lineno, int |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1772 | col_offset, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1773 | { |
| 1774 | excepthandler_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1775 | p = (excepthandler_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1776 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1777 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1778 | p->type = type; |
| 1779 | p->name = name; |
| 1780 | p->body = body; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1781 | p->lineno = lineno; |
| 1782 | p->col_offset = col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1783 | return p; |
| 1784 | } |
| 1785 | |
| 1786 | arguments_ty |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1787 | arguments(asdl_seq * args, identifier vararg, expr_ty varargannotation, |
| 1788 | asdl_seq * kwonlyargs, identifier kwarg, expr_ty kwargannotation, |
| 1789 | asdl_seq * defaults, asdl_seq * kw_defaults, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1790 | { |
| 1791 | arguments_ty p; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1792 | p = (arguments_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1793 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1794 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1795 | p->args = args; |
| 1796 | p->vararg = vararg; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1797 | p->varargannotation = varargannotation; |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 1798 | p->kwonlyargs = kwonlyargs; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1799 | p->kwarg = kwarg; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1800 | p->kwargannotation = kwargannotation; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1801 | p->defaults = defaults; |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 1802 | p->kw_defaults = kw_defaults; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1803 | return p; |
| 1804 | } |
| 1805 | |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1806 | arg_ty |
| 1807 | SimpleArg(identifier arg, expr_ty annotation, PyArena *arena) |
| 1808 | { |
| 1809 | arg_ty p; |
| 1810 | if (!arg) { |
| 1811 | PyErr_SetString(PyExc_ValueError, |
| 1812 | "field arg is required for SimpleArg"); |
| 1813 | return NULL; |
| 1814 | } |
| 1815 | p = (arg_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1816 | if (!p) |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1817 | return NULL; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1818 | p->kind = SimpleArg_kind; |
| 1819 | p->v.SimpleArg.arg = arg; |
| 1820 | p->v.SimpleArg.annotation = annotation; |
| 1821 | return p; |
| 1822 | } |
| 1823 | |
| 1824 | arg_ty |
| 1825 | NestedArgs(asdl_seq * args, PyArena *arena) |
| 1826 | { |
| 1827 | arg_ty p; |
| 1828 | p = (arg_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1829 | if (!p) |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1830 | return NULL; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1831 | p->kind = NestedArgs_kind; |
| 1832 | p->v.NestedArgs.args = args; |
| 1833 | return p; |
| 1834 | } |
| 1835 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1836 | keyword_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1837 | keyword(identifier arg, expr_ty value, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1838 | { |
| 1839 | keyword_ty p; |
| 1840 | if (!arg) { |
| 1841 | PyErr_SetString(PyExc_ValueError, |
| 1842 | "field arg is required for keyword"); |
| 1843 | return NULL; |
| 1844 | } |
| 1845 | if (!value) { |
| 1846 | PyErr_SetString(PyExc_ValueError, |
| 1847 | "field value is required for keyword"); |
| 1848 | return NULL; |
| 1849 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1850 | p = (keyword_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1851 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1852 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1853 | p->arg = arg; |
| 1854 | p->value = value; |
| 1855 | return p; |
| 1856 | } |
| 1857 | |
| 1858 | alias_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1859 | alias(identifier name, identifier asname, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1860 | { |
| 1861 | alias_ty p; |
| 1862 | if (!name) { |
| 1863 | PyErr_SetString(PyExc_ValueError, |
| 1864 | "field name is required for alias"); |
| 1865 | return NULL; |
| 1866 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1867 | p = (alias_ty)PyArena_Malloc(arena, sizeof(*p)); |
Thomas Wouters | a44f3a3 | 2007-02-26 18:20:15 +0000 | [diff] [blame] | 1868 | if (!p) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1869 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1870 | p->name = name; |
| 1871 | p->asname = asname; |
| 1872 | return p; |
| 1873 | } |
| 1874 | |
Neal Norwitz | 7b5a604 | 2005-11-13 19:14:20 +0000 | [diff] [blame] | 1875 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 1876 | PyObject* |
| 1877 | ast2obj_mod(void* _o) |
Neal Norwitz | 7b5a604 | 2005-11-13 19:14:20 +0000 | [diff] [blame] | 1878 | { |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 1879 | mod_ty o = (mod_ty)_o; |
| 1880 | PyObject *result = NULL, *value = NULL; |
| 1881 | if (!o) { |
| 1882 | Py_INCREF(Py_None); |
| 1883 | return Py_None; |
| 1884 | } |
Neal Norwitz | 7b5a604 | 2005-11-13 19:14:20 +0000 | [diff] [blame] | 1885 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1886 | switch (o->kind) { |
| 1887 | case Module_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 1888 | result = PyType_GenericNew(Module_type, NULL, NULL); |
| 1889 | if (!result) goto failed; |
| 1890 | value = ast2obj_list(o->v.Module.body, ast2obj_stmt); |
| 1891 | if (!value) goto failed; |
| 1892 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 1893 | goto failed; |
| 1894 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1895 | break; |
| 1896 | case Interactive_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 1897 | result = PyType_GenericNew(Interactive_type, NULL, NULL); |
| 1898 | if (!result) goto failed; |
| 1899 | value = ast2obj_list(o->v.Interactive.body, ast2obj_stmt); |
| 1900 | if (!value) goto failed; |
| 1901 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 1902 | goto failed; |
| 1903 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1904 | break; |
| 1905 | case Expression_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 1906 | result = PyType_GenericNew(Expression_type, NULL, NULL); |
| 1907 | if (!result) goto failed; |
| 1908 | value = ast2obj_expr(o->v.Expression.body); |
| 1909 | if (!value) goto failed; |
| 1910 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 1911 | goto failed; |
| 1912 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1913 | break; |
| 1914 | case Suite_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 1915 | result = PyType_GenericNew(Suite_type, NULL, NULL); |
| 1916 | if (!result) goto failed; |
| 1917 | value = ast2obj_list(o->v.Suite.body, ast2obj_stmt); |
| 1918 | if (!value) goto failed; |
| 1919 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 1920 | goto failed; |
| 1921 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1922 | break; |
| 1923 | } |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 1924 | return result; |
| 1925 | failed: |
| 1926 | Py_XDECREF(value); |
| 1927 | Py_XDECREF(result); |
| 1928 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1929 | } |
| 1930 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 1931 | PyObject* |
| 1932 | ast2obj_stmt(void* _o) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1933 | { |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 1934 | stmt_ty o = (stmt_ty)_o; |
| 1935 | PyObject *result = NULL, *value = NULL; |
| 1936 | if (!o) { |
| 1937 | Py_INCREF(Py_None); |
| 1938 | return Py_None; |
| 1939 | } |
| 1940 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1941 | switch (o->kind) { |
| 1942 | case FunctionDef_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 1943 | result = PyType_GenericNew(FunctionDef_type, NULL, NULL); |
| 1944 | if (!result) goto failed; |
| 1945 | value = ast2obj_identifier(o->v.FunctionDef.name); |
| 1946 | if (!value) goto failed; |
| 1947 | if (PyObject_SetAttrString(result, "name", value) == -1) |
| 1948 | goto failed; |
| 1949 | Py_DECREF(value); |
| 1950 | value = ast2obj_arguments(o->v.FunctionDef.args); |
| 1951 | if (!value) goto failed; |
| 1952 | if (PyObject_SetAttrString(result, "args", value) == -1) |
| 1953 | goto failed; |
| 1954 | Py_DECREF(value); |
| 1955 | value = ast2obj_list(o->v.FunctionDef.body, ast2obj_stmt); |
| 1956 | if (!value) goto failed; |
| 1957 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 1958 | goto failed; |
| 1959 | Py_DECREF(value); |
| 1960 | value = ast2obj_list(o->v.FunctionDef.decorators, ast2obj_expr); |
| 1961 | if (!value) goto failed; |
| 1962 | if (PyObject_SetAttrString(result, "decorators", value) == -1) |
| 1963 | goto failed; |
| 1964 | Py_DECREF(value); |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1965 | value = ast2obj_expr(o->v.FunctionDef.returns); |
| 1966 | if (!value) goto failed; |
| 1967 | if (PyObject_SetAttrString(result, "returns", value) == -1) |
| 1968 | goto failed; |
| 1969 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1970 | break; |
| 1971 | case ClassDef_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 1972 | result = PyType_GenericNew(ClassDef_type, NULL, NULL); |
| 1973 | if (!result) goto failed; |
| 1974 | value = ast2obj_identifier(o->v.ClassDef.name); |
| 1975 | if (!value) goto failed; |
| 1976 | if (PyObject_SetAttrString(result, "name", value) == -1) |
| 1977 | goto failed; |
| 1978 | Py_DECREF(value); |
| 1979 | value = ast2obj_list(o->v.ClassDef.bases, ast2obj_expr); |
| 1980 | if (!value) goto failed; |
| 1981 | if (PyObject_SetAttrString(result, "bases", value) == -1) |
| 1982 | goto failed; |
| 1983 | Py_DECREF(value); |
Guido van Rossum | 52cc1d8 | 2007-03-18 15:41:51 +0000 | [diff] [blame^] | 1984 | value = ast2obj_list(o->v.ClassDef.keywords, ast2obj_keyword); |
| 1985 | if (!value) goto failed; |
| 1986 | if (PyObject_SetAttrString(result, "keywords", value) == -1) |
| 1987 | goto failed; |
| 1988 | Py_DECREF(value); |
| 1989 | value = ast2obj_expr(o->v.ClassDef.starargs); |
| 1990 | if (!value) goto failed; |
| 1991 | if (PyObject_SetAttrString(result, "starargs", value) == -1) |
| 1992 | goto failed; |
| 1993 | Py_DECREF(value); |
| 1994 | value = ast2obj_expr(o->v.ClassDef.kwargs); |
| 1995 | if (!value) goto failed; |
| 1996 | if (PyObject_SetAttrString(result, "kwargs", value) == -1) |
| 1997 | goto failed; |
| 1998 | Py_DECREF(value); |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 1999 | value = ast2obj_list(o->v.ClassDef.body, ast2obj_stmt); |
| 2000 | if (!value) goto failed; |
| 2001 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 2002 | goto failed; |
| 2003 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2004 | break; |
| 2005 | case Return_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2006 | result = PyType_GenericNew(Return_type, NULL, NULL); |
| 2007 | if (!result) goto failed; |
| 2008 | value = ast2obj_expr(o->v.Return.value); |
| 2009 | if (!value) goto failed; |
| 2010 | if (PyObject_SetAttrString(result, "value", value) == -1) |
| 2011 | goto failed; |
| 2012 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2013 | break; |
| 2014 | case Delete_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2015 | result = PyType_GenericNew(Delete_type, NULL, NULL); |
| 2016 | if (!result) goto failed; |
| 2017 | value = ast2obj_list(o->v.Delete.targets, ast2obj_expr); |
| 2018 | if (!value) goto failed; |
| 2019 | if (PyObject_SetAttrString(result, "targets", value) == -1) |
| 2020 | goto failed; |
| 2021 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2022 | break; |
| 2023 | case Assign_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2024 | result = PyType_GenericNew(Assign_type, NULL, NULL); |
| 2025 | if (!result) goto failed; |
| 2026 | value = ast2obj_list(o->v.Assign.targets, ast2obj_expr); |
| 2027 | if (!value) goto failed; |
| 2028 | if (PyObject_SetAttrString(result, "targets", value) == -1) |
| 2029 | goto failed; |
| 2030 | Py_DECREF(value); |
| 2031 | value = ast2obj_expr(o->v.Assign.value); |
| 2032 | if (!value) goto failed; |
| 2033 | if (PyObject_SetAttrString(result, "value", value) == -1) |
| 2034 | goto failed; |
| 2035 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2036 | break; |
| 2037 | case AugAssign_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2038 | result = PyType_GenericNew(AugAssign_type, NULL, NULL); |
| 2039 | if (!result) goto failed; |
| 2040 | value = ast2obj_expr(o->v.AugAssign.target); |
| 2041 | if (!value) goto failed; |
| 2042 | if (PyObject_SetAttrString(result, "target", value) == -1) |
| 2043 | goto failed; |
| 2044 | Py_DECREF(value); |
| 2045 | value = ast2obj_operator(o->v.AugAssign.op); |
| 2046 | if (!value) goto failed; |
| 2047 | if (PyObject_SetAttrString(result, "op", value) == -1) |
| 2048 | goto failed; |
| 2049 | Py_DECREF(value); |
| 2050 | value = ast2obj_expr(o->v.AugAssign.value); |
| 2051 | if (!value) goto failed; |
| 2052 | if (PyObject_SetAttrString(result, "value", value) == -1) |
| 2053 | goto failed; |
| 2054 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2055 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2056 | case For_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2057 | result = PyType_GenericNew(For_type, NULL, NULL); |
| 2058 | if (!result) goto failed; |
| 2059 | value = ast2obj_expr(o->v.For.target); |
| 2060 | if (!value) goto failed; |
| 2061 | if (PyObject_SetAttrString(result, "target", value) == -1) |
| 2062 | goto failed; |
| 2063 | Py_DECREF(value); |
| 2064 | value = ast2obj_expr(o->v.For.iter); |
| 2065 | if (!value) goto failed; |
| 2066 | if (PyObject_SetAttrString(result, "iter", value) == -1) |
| 2067 | goto failed; |
| 2068 | Py_DECREF(value); |
| 2069 | value = ast2obj_list(o->v.For.body, ast2obj_stmt); |
| 2070 | if (!value) goto failed; |
| 2071 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 2072 | goto failed; |
| 2073 | Py_DECREF(value); |
| 2074 | value = ast2obj_list(o->v.For.orelse, ast2obj_stmt); |
| 2075 | if (!value) goto failed; |
| 2076 | if (PyObject_SetAttrString(result, "orelse", value) == -1) |
| 2077 | goto failed; |
| 2078 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2079 | break; |
| 2080 | case While_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2081 | result = PyType_GenericNew(While_type, NULL, NULL); |
| 2082 | if (!result) goto failed; |
| 2083 | value = ast2obj_expr(o->v.While.test); |
| 2084 | if (!value) goto failed; |
| 2085 | if (PyObject_SetAttrString(result, "test", value) == -1) |
| 2086 | goto failed; |
| 2087 | Py_DECREF(value); |
| 2088 | value = ast2obj_list(o->v.While.body, ast2obj_stmt); |
| 2089 | if (!value) goto failed; |
| 2090 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 2091 | goto failed; |
| 2092 | Py_DECREF(value); |
| 2093 | value = ast2obj_list(o->v.While.orelse, ast2obj_stmt); |
| 2094 | if (!value) goto failed; |
| 2095 | if (PyObject_SetAttrString(result, "orelse", value) == -1) |
| 2096 | goto failed; |
| 2097 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2098 | break; |
| 2099 | case If_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2100 | result = PyType_GenericNew(If_type, NULL, NULL); |
| 2101 | if (!result) goto failed; |
| 2102 | value = ast2obj_expr(o->v.If.test); |
| 2103 | if (!value) goto failed; |
| 2104 | if (PyObject_SetAttrString(result, "test", value) == -1) |
| 2105 | goto failed; |
| 2106 | Py_DECREF(value); |
| 2107 | value = ast2obj_list(o->v.If.body, ast2obj_stmt); |
| 2108 | if (!value) goto failed; |
| 2109 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 2110 | goto failed; |
| 2111 | Py_DECREF(value); |
| 2112 | value = ast2obj_list(o->v.If.orelse, ast2obj_stmt); |
| 2113 | if (!value) goto failed; |
| 2114 | if (PyObject_SetAttrString(result, "orelse", value) == -1) |
| 2115 | goto failed; |
| 2116 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2117 | break; |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 2118 | case With_kind: |
| 2119 | result = PyType_GenericNew(With_type, NULL, NULL); |
| 2120 | if (!result) goto failed; |
| 2121 | value = ast2obj_expr(o->v.With.context_expr); |
| 2122 | if (!value) goto failed; |
| 2123 | if (PyObject_SetAttrString(result, "context_expr", value) == -1) |
| 2124 | goto failed; |
| 2125 | Py_DECREF(value); |
| 2126 | value = ast2obj_expr(o->v.With.optional_vars); |
| 2127 | if (!value) goto failed; |
| 2128 | if (PyObject_SetAttrString(result, "optional_vars", value) == |
| 2129 | -1) |
| 2130 | goto failed; |
| 2131 | Py_DECREF(value); |
| 2132 | value = ast2obj_list(o->v.With.body, ast2obj_stmt); |
| 2133 | if (!value) goto failed; |
| 2134 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 2135 | goto failed; |
| 2136 | Py_DECREF(value); |
| 2137 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2138 | case Raise_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2139 | result = PyType_GenericNew(Raise_type, NULL, NULL); |
| 2140 | if (!result) goto failed; |
| 2141 | value = ast2obj_expr(o->v.Raise.type); |
| 2142 | if (!value) goto failed; |
| 2143 | if (PyObject_SetAttrString(result, "type", value) == -1) |
| 2144 | goto failed; |
| 2145 | Py_DECREF(value); |
| 2146 | value = ast2obj_expr(o->v.Raise.inst); |
| 2147 | if (!value) goto failed; |
| 2148 | if (PyObject_SetAttrString(result, "inst", value) == -1) |
| 2149 | goto failed; |
| 2150 | Py_DECREF(value); |
| 2151 | value = ast2obj_expr(o->v.Raise.tback); |
| 2152 | if (!value) goto failed; |
| 2153 | if (PyObject_SetAttrString(result, "tback", value) == -1) |
| 2154 | goto failed; |
| 2155 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2156 | break; |
| 2157 | case TryExcept_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2158 | result = PyType_GenericNew(TryExcept_type, NULL, NULL); |
| 2159 | if (!result) goto failed; |
| 2160 | value = ast2obj_list(o->v.TryExcept.body, ast2obj_stmt); |
| 2161 | if (!value) goto failed; |
| 2162 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 2163 | goto failed; |
| 2164 | Py_DECREF(value); |
| 2165 | value = ast2obj_list(o->v.TryExcept.handlers, |
| 2166 | ast2obj_excepthandler); |
| 2167 | if (!value) goto failed; |
| 2168 | if (PyObject_SetAttrString(result, "handlers", value) == -1) |
| 2169 | goto failed; |
| 2170 | Py_DECREF(value); |
| 2171 | value = ast2obj_list(o->v.TryExcept.orelse, ast2obj_stmt); |
| 2172 | if (!value) goto failed; |
| 2173 | if (PyObject_SetAttrString(result, "orelse", value) == -1) |
| 2174 | goto failed; |
| 2175 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2176 | break; |
| 2177 | case TryFinally_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2178 | result = PyType_GenericNew(TryFinally_type, NULL, NULL); |
| 2179 | if (!result) goto failed; |
| 2180 | value = ast2obj_list(o->v.TryFinally.body, ast2obj_stmt); |
| 2181 | if (!value) goto failed; |
| 2182 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 2183 | goto failed; |
| 2184 | Py_DECREF(value); |
| 2185 | value = ast2obj_list(o->v.TryFinally.finalbody, ast2obj_stmt); |
| 2186 | if (!value) goto failed; |
| 2187 | if (PyObject_SetAttrString(result, "finalbody", value) == -1) |
| 2188 | goto failed; |
| 2189 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2190 | break; |
| 2191 | case Assert_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2192 | result = PyType_GenericNew(Assert_type, NULL, NULL); |
| 2193 | if (!result) goto failed; |
| 2194 | value = ast2obj_expr(o->v.Assert.test); |
| 2195 | if (!value) goto failed; |
| 2196 | if (PyObject_SetAttrString(result, "test", value) == -1) |
| 2197 | goto failed; |
| 2198 | Py_DECREF(value); |
| 2199 | value = ast2obj_expr(o->v.Assert.msg); |
| 2200 | if (!value) goto failed; |
| 2201 | if (PyObject_SetAttrString(result, "msg", value) == -1) |
| 2202 | goto failed; |
| 2203 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2204 | break; |
| 2205 | case Import_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2206 | result = PyType_GenericNew(Import_type, NULL, NULL); |
| 2207 | if (!result) goto failed; |
| 2208 | value = ast2obj_list(o->v.Import.names, ast2obj_alias); |
| 2209 | if (!value) goto failed; |
| 2210 | if (PyObject_SetAttrString(result, "names", value) == -1) |
| 2211 | goto failed; |
| 2212 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2213 | break; |
| 2214 | case ImportFrom_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2215 | result = PyType_GenericNew(ImportFrom_type, NULL, NULL); |
| 2216 | if (!result) goto failed; |
| 2217 | value = ast2obj_identifier(o->v.ImportFrom.module); |
| 2218 | if (!value) goto failed; |
| 2219 | if (PyObject_SetAttrString(result, "module", value) == -1) |
| 2220 | goto failed; |
| 2221 | Py_DECREF(value); |
| 2222 | value = ast2obj_list(o->v.ImportFrom.names, ast2obj_alias); |
| 2223 | if (!value) goto failed; |
| 2224 | if (PyObject_SetAttrString(result, "names", value) == -1) |
| 2225 | goto failed; |
| 2226 | Py_DECREF(value); |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2227 | value = ast2obj_int(o->v.ImportFrom.level); |
| 2228 | if (!value) goto failed; |
| 2229 | if (PyObject_SetAttrString(result, "level", value) == -1) |
| 2230 | goto failed; |
| 2231 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2232 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2233 | case Global_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2234 | result = PyType_GenericNew(Global_type, NULL, NULL); |
| 2235 | if (!result) goto failed; |
| 2236 | value = ast2obj_list(o->v.Global.names, ast2obj_identifier); |
| 2237 | if (!value) goto failed; |
| 2238 | if (PyObject_SetAttrString(result, "names", value) == -1) |
| 2239 | goto failed; |
| 2240 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2241 | break; |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 2242 | case Nonlocal_kind: |
| 2243 | result = PyType_GenericNew(Nonlocal_type, NULL, NULL); |
| 2244 | if (!result) goto failed; |
| 2245 | value = ast2obj_list(o->v.Nonlocal.names, ast2obj_identifier); |
| 2246 | if (!value) goto failed; |
| 2247 | if (PyObject_SetAttrString(result, "names", value) == -1) |
| 2248 | goto failed; |
| 2249 | Py_DECREF(value); |
| 2250 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2251 | case Expr_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2252 | result = PyType_GenericNew(Expr_type, NULL, NULL); |
| 2253 | if (!result) goto failed; |
| 2254 | value = ast2obj_expr(o->v.Expr.value); |
| 2255 | if (!value) goto failed; |
| 2256 | if (PyObject_SetAttrString(result, "value", value) == -1) |
| 2257 | goto failed; |
| 2258 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2259 | break; |
| 2260 | case Pass_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2261 | result = PyType_GenericNew(Pass_type, NULL, NULL); |
| 2262 | if (!result) goto failed; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2263 | break; |
| 2264 | case Break_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2265 | result = PyType_GenericNew(Break_type, NULL, NULL); |
| 2266 | if (!result) goto failed; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2267 | break; |
| 2268 | case Continue_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2269 | result = PyType_GenericNew(Continue_type, NULL, NULL); |
| 2270 | if (!result) goto failed; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2271 | break; |
| 2272 | } |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 2273 | value = ast2obj_int(o->lineno); |
| 2274 | if (!value) goto failed; |
Martin v. Löwis | 03e5bc0 | 2006-03-02 00:31:27 +0000 | [diff] [blame] | 2275 | if (PyObject_SetAttrString(result, "lineno", value) < 0) |
| 2276 | goto failed; |
| 2277 | Py_DECREF(value); |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2278 | value = ast2obj_int(o->col_offset); |
| 2279 | if (!value) goto failed; |
Martin v. Löwis | 03e5bc0 | 2006-03-02 00:31:27 +0000 | [diff] [blame] | 2280 | if (PyObject_SetAttrString(result, "col_offset", value) < 0) |
| 2281 | goto failed; |
| 2282 | Py_DECREF(value); |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2283 | return result; |
| 2284 | failed: |
| 2285 | Py_XDECREF(value); |
| 2286 | Py_XDECREF(result); |
| 2287 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2288 | } |
| 2289 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2290 | PyObject* |
| 2291 | ast2obj_expr(void* _o) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2292 | { |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2293 | expr_ty o = (expr_ty)_o; |
| 2294 | PyObject *result = NULL, *value = NULL; |
| 2295 | if (!o) { |
| 2296 | Py_INCREF(Py_None); |
| 2297 | return Py_None; |
| 2298 | } |
| 2299 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2300 | switch (o->kind) { |
| 2301 | case BoolOp_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2302 | result = PyType_GenericNew(BoolOp_type, NULL, NULL); |
| 2303 | if (!result) goto failed; |
| 2304 | value = ast2obj_boolop(o->v.BoolOp.op); |
| 2305 | if (!value) goto failed; |
| 2306 | if (PyObject_SetAttrString(result, "op", value) == -1) |
| 2307 | goto failed; |
| 2308 | Py_DECREF(value); |
| 2309 | value = ast2obj_list(o->v.BoolOp.values, ast2obj_expr); |
| 2310 | if (!value) goto failed; |
| 2311 | if (PyObject_SetAttrString(result, "values", value) == -1) |
| 2312 | goto failed; |
| 2313 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2314 | break; |
| 2315 | case BinOp_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2316 | result = PyType_GenericNew(BinOp_type, NULL, NULL); |
| 2317 | if (!result) goto failed; |
| 2318 | value = ast2obj_expr(o->v.BinOp.left); |
| 2319 | if (!value) goto failed; |
| 2320 | if (PyObject_SetAttrString(result, "left", value) == -1) |
| 2321 | goto failed; |
| 2322 | Py_DECREF(value); |
| 2323 | value = ast2obj_operator(o->v.BinOp.op); |
| 2324 | if (!value) goto failed; |
| 2325 | if (PyObject_SetAttrString(result, "op", value) == -1) |
| 2326 | goto failed; |
| 2327 | Py_DECREF(value); |
| 2328 | value = ast2obj_expr(o->v.BinOp.right); |
| 2329 | if (!value) goto failed; |
| 2330 | if (PyObject_SetAttrString(result, "right", value) == -1) |
| 2331 | goto failed; |
| 2332 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2333 | break; |
| 2334 | case UnaryOp_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2335 | result = PyType_GenericNew(UnaryOp_type, NULL, NULL); |
| 2336 | if (!result) goto failed; |
| 2337 | value = ast2obj_unaryop(o->v.UnaryOp.op); |
| 2338 | if (!value) goto failed; |
| 2339 | if (PyObject_SetAttrString(result, "op", value) == -1) |
| 2340 | goto failed; |
| 2341 | Py_DECREF(value); |
| 2342 | value = ast2obj_expr(o->v.UnaryOp.operand); |
| 2343 | if (!value) goto failed; |
| 2344 | if (PyObject_SetAttrString(result, "operand", value) == -1) |
| 2345 | goto failed; |
| 2346 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2347 | break; |
| 2348 | case Lambda_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2349 | result = PyType_GenericNew(Lambda_type, NULL, NULL); |
| 2350 | if (!result) goto failed; |
| 2351 | value = ast2obj_arguments(o->v.Lambda.args); |
| 2352 | if (!value) goto failed; |
| 2353 | if (PyObject_SetAttrString(result, "args", value) == -1) |
| 2354 | goto failed; |
| 2355 | Py_DECREF(value); |
| 2356 | value = ast2obj_expr(o->v.Lambda.body); |
| 2357 | if (!value) goto failed; |
| 2358 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 2359 | goto failed; |
| 2360 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2361 | break; |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 2362 | case IfExp_kind: |
| 2363 | result = PyType_GenericNew(IfExp_type, NULL, NULL); |
| 2364 | if (!result) goto failed; |
| 2365 | value = ast2obj_expr(o->v.IfExp.test); |
| 2366 | if (!value) goto failed; |
| 2367 | if (PyObject_SetAttrString(result, "test", value) == -1) |
| 2368 | goto failed; |
| 2369 | Py_DECREF(value); |
| 2370 | value = ast2obj_expr(o->v.IfExp.body); |
| 2371 | if (!value) goto failed; |
| 2372 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 2373 | goto failed; |
| 2374 | Py_DECREF(value); |
| 2375 | value = ast2obj_expr(o->v.IfExp.orelse); |
| 2376 | if (!value) goto failed; |
| 2377 | if (PyObject_SetAttrString(result, "orelse", value) == -1) |
| 2378 | goto failed; |
| 2379 | Py_DECREF(value); |
| 2380 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2381 | case Dict_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2382 | result = PyType_GenericNew(Dict_type, NULL, NULL); |
| 2383 | if (!result) goto failed; |
| 2384 | value = ast2obj_list(o->v.Dict.keys, ast2obj_expr); |
| 2385 | if (!value) goto failed; |
| 2386 | if (PyObject_SetAttrString(result, "keys", value) == -1) |
| 2387 | goto failed; |
| 2388 | Py_DECREF(value); |
| 2389 | value = ast2obj_list(o->v.Dict.values, ast2obj_expr); |
| 2390 | if (!value) goto failed; |
| 2391 | if (PyObject_SetAttrString(result, "values", value) == -1) |
| 2392 | goto failed; |
| 2393 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2394 | break; |
Guido van Rossum | 86e58e2 | 2006-08-28 15:27:34 +0000 | [diff] [blame] | 2395 | case Set_kind: |
| 2396 | result = PyType_GenericNew(Set_type, NULL, NULL); |
| 2397 | if (!result) goto failed; |
| 2398 | value = ast2obj_list(o->v.Set.elts, ast2obj_expr); |
| 2399 | if (!value) goto failed; |
| 2400 | if (PyObject_SetAttrString(result, "elts", value) == -1) |
| 2401 | goto failed; |
| 2402 | Py_DECREF(value); |
| 2403 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2404 | case ListComp_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2405 | result = PyType_GenericNew(ListComp_type, NULL, NULL); |
| 2406 | if (!result) goto failed; |
| 2407 | value = ast2obj_expr(o->v.ListComp.elt); |
| 2408 | if (!value) goto failed; |
| 2409 | if (PyObject_SetAttrString(result, "elt", value) == -1) |
| 2410 | goto failed; |
| 2411 | Py_DECREF(value); |
| 2412 | value = ast2obj_list(o->v.ListComp.generators, |
| 2413 | ast2obj_comprehension); |
| 2414 | if (!value) goto failed; |
| 2415 | if (PyObject_SetAttrString(result, "generators", value) == -1) |
| 2416 | goto failed; |
| 2417 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2418 | break; |
| 2419 | case GeneratorExp_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2420 | result = PyType_GenericNew(GeneratorExp_type, NULL, NULL); |
| 2421 | if (!result) goto failed; |
| 2422 | value = ast2obj_expr(o->v.GeneratorExp.elt); |
| 2423 | if (!value) goto failed; |
| 2424 | if (PyObject_SetAttrString(result, "elt", value) == -1) |
| 2425 | goto failed; |
| 2426 | Py_DECREF(value); |
| 2427 | value = ast2obj_list(o->v.GeneratorExp.generators, |
| 2428 | ast2obj_comprehension); |
| 2429 | if (!value) goto failed; |
| 2430 | if (PyObject_SetAttrString(result, "generators", value) == -1) |
| 2431 | goto failed; |
| 2432 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2433 | break; |
| 2434 | case Yield_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2435 | result = PyType_GenericNew(Yield_type, NULL, NULL); |
| 2436 | if (!result) goto failed; |
| 2437 | value = ast2obj_expr(o->v.Yield.value); |
| 2438 | if (!value) goto failed; |
| 2439 | if (PyObject_SetAttrString(result, "value", value) == -1) |
| 2440 | goto failed; |
| 2441 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2442 | break; |
| 2443 | case Compare_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2444 | result = PyType_GenericNew(Compare_type, NULL, NULL); |
| 2445 | if (!result) goto failed; |
| 2446 | value = ast2obj_expr(o->v.Compare.left); |
| 2447 | if (!value) goto failed; |
| 2448 | if (PyObject_SetAttrString(result, "left", value) == -1) |
| 2449 | goto failed; |
| 2450 | Py_DECREF(value); |
Martin v. Löwis | ce1d5d2 | 2006-02-26 20:51:25 +0000 | [diff] [blame] | 2451 | { |
| 2452 | int i, n = asdl_seq_LEN(o->v.Compare.ops); |
| 2453 | value = PyList_New(n); |
| 2454 | if (!value) goto failed; |
| 2455 | for(i = 0; i < n; i++) |
| 2456 | PyList_SET_ITEM(value, i, ast2obj_cmpop((cmpop_ty)asdl_seq_GET(o->v.Compare.ops, i))); |
| 2457 | } |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2458 | if (!value) goto failed; |
| 2459 | if (PyObject_SetAttrString(result, "ops", value) == -1) |
| 2460 | goto failed; |
| 2461 | Py_DECREF(value); |
| 2462 | value = ast2obj_list(o->v.Compare.comparators, ast2obj_expr); |
| 2463 | if (!value) goto failed; |
| 2464 | if (PyObject_SetAttrString(result, "comparators", value) == -1) |
| 2465 | goto failed; |
| 2466 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2467 | break; |
| 2468 | case Call_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2469 | result = PyType_GenericNew(Call_type, NULL, NULL); |
| 2470 | if (!result) goto failed; |
| 2471 | value = ast2obj_expr(o->v.Call.func); |
| 2472 | if (!value) goto failed; |
| 2473 | if (PyObject_SetAttrString(result, "func", value) == -1) |
| 2474 | goto failed; |
| 2475 | Py_DECREF(value); |
| 2476 | value = ast2obj_list(o->v.Call.args, ast2obj_expr); |
| 2477 | if (!value) goto failed; |
| 2478 | if (PyObject_SetAttrString(result, "args", value) == -1) |
| 2479 | goto failed; |
| 2480 | Py_DECREF(value); |
| 2481 | value = ast2obj_list(o->v.Call.keywords, ast2obj_keyword); |
| 2482 | if (!value) goto failed; |
| 2483 | if (PyObject_SetAttrString(result, "keywords", value) == -1) |
| 2484 | goto failed; |
| 2485 | Py_DECREF(value); |
| 2486 | value = ast2obj_expr(o->v.Call.starargs); |
| 2487 | if (!value) goto failed; |
| 2488 | if (PyObject_SetAttrString(result, "starargs", value) == -1) |
| 2489 | goto failed; |
| 2490 | Py_DECREF(value); |
| 2491 | value = ast2obj_expr(o->v.Call.kwargs); |
| 2492 | if (!value) goto failed; |
| 2493 | if (PyObject_SetAttrString(result, "kwargs", value) == -1) |
| 2494 | goto failed; |
| 2495 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2496 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2497 | case Num_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2498 | result = PyType_GenericNew(Num_type, NULL, NULL); |
| 2499 | if (!result) goto failed; |
| 2500 | value = ast2obj_object(o->v.Num.n); |
| 2501 | if (!value) goto failed; |
| 2502 | if (PyObject_SetAttrString(result, "n", value) == -1) |
| 2503 | goto failed; |
| 2504 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2505 | break; |
| 2506 | case Str_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2507 | result = PyType_GenericNew(Str_type, NULL, NULL); |
| 2508 | if (!result) goto failed; |
| 2509 | value = ast2obj_string(o->v.Str.s); |
| 2510 | if (!value) goto failed; |
| 2511 | if (PyObject_SetAttrString(result, "s", value) == -1) |
| 2512 | goto failed; |
| 2513 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2514 | break; |
Thomas Wouters | 00e41de | 2007-02-23 19:56:57 +0000 | [diff] [blame] | 2515 | case Bytes_kind: |
| 2516 | result = PyType_GenericNew(Bytes_type, NULL, NULL); |
| 2517 | if (!result) goto failed; |
| 2518 | value = ast2obj_string(o->v.Bytes.s); |
| 2519 | if (!value) goto failed; |
| 2520 | if (PyObject_SetAttrString(result, "s", value) == -1) |
| 2521 | goto failed; |
| 2522 | Py_DECREF(value); |
| 2523 | break; |
Georg Brandl | 52318d6 | 2006-09-06 07:06:08 +0000 | [diff] [blame] | 2524 | case Ellipsis_kind: |
| 2525 | result = PyType_GenericNew(Ellipsis_type, NULL, NULL); |
| 2526 | if (!result) goto failed; |
| 2527 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2528 | case Attribute_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2529 | result = PyType_GenericNew(Attribute_type, NULL, NULL); |
| 2530 | if (!result) goto failed; |
| 2531 | value = ast2obj_expr(o->v.Attribute.value); |
| 2532 | if (!value) goto failed; |
| 2533 | if (PyObject_SetAttrString(result, "value", value) == -1) |
| 2534 | goto failed; |
| 2535 | Py_DECREF(value); |
| 2536 | value = ast2obj_identifier(o->v.Attribute.attr); |
| 2537 | if (!value) goto failed; |
| 2538 | if (PyObject_SetAttrString(result, "attr", value) == -1) |
| 2539 | goto failed; |
| 2540 | Py_DECREF(value); |
| 2541 | value = ast2obj_expr_context(o->v.Attribute.ctx); |
| 2542 | if (!value) goto failed; |
| 2543 | if (PyObject_SetAttrString(result, "ctx", value) == -1) |
| 2544 | goto failed; |
| 2545 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2546 | break; |
| 2547 | case Subscript_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2548 | result = PyType_GenericNew(Subscript_type, NULL, NULL); |
| 2549 | if (!result) goto failed; |
| 2550 | value = ast2obj_expr(o->v.Subscript.value); |
| 2551 | if (!value) goto failed; |
| 2552 | if (PyObject_SetAttrString(result, "value", value) == -1) |
| 2553 | goto failed; |
| 2554 | Py_DECREF(value); |
| 2555 | value = ast2obj_slice(o->v.Subscript.slice); |
| 2556 | if (!value) goto failed; |
| 2557 | if (PyObject_SetAttrString(result, "slice", value) == -1) |
| 2558 | goto failed; |
| 2559 | Py_DECREF(value); |
| 2560 | value = ast2obj_expr_context(o->v.Subscript.ctx); |
| 2561 | if (!value) goto failed; |
| 2562 | if (PyObject_SetAttrString(result, "ctx", value) == -1) |
| 2563 | goto failed; |
| 2564 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2565 | break; |
| 2566 | case Name_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2567 | result = PyType_GenericNew(Name_type, NULL, NULL); |
| 2568 | if (!result) goto failed; |
| 2569 | value = ast2obj_identifier(o->v.Name.id); |
| 2570 | if (!value) goto failed; |
| 2571 | if (PyObject_SetAttrString(result, "id", value) == -1) |
| 2572 | goto failed; |
| 2573 | Py_DECREF(value); |
| 2574 | value = ast2obj_expr_context(o->v.Name.ctx); |
| 2575 | if (!value) goto failed; |
| 2576 | if (PyObject_SetAttrString(result, "ctx", value) == -1) |
| 2577 | goto failed; |
| 2578 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2579 | break; |
| 2580 | case List_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2581 | result = PyType_GenericNew(List_type, NULL, NULL); |
| 2582 | if (!result) goto failed; |
| 2583 | value = ast2obj_list(o->v.List.elts, ast2obj_expr); |
| 2584 | if (!value) goto failed; |
| 2585 | if (PyObject_SetAttrString(result, "elts", value) == -1) |
| 2586 | goto failed; |
| 2587 | Py_DECREF(value); |
| 2588 | value = ast2obj_expr_context(o->v.List.ctx); |
| 2589 | if (!value) goto failed; |
| 2590 | if (PyObject_SetAttrString(result, "ctx", value) == -1) |
| 2591 | goto failed; |
| 2592 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2593 | break; |
| 2594 | case Tuple_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2595 | result = PyType_GenericNew(Tuple_type, NULL, NULL); |
| 2596 | if (!result) goto failed; |
| 2597 | value = ast2obj_list(o->v.Tuple.elts, ast2obj_expr); |
| 2598 | if (!value) goto failed; |
| 2599 | if (PyObject_SetAttrString(result, "elts", value) == -1) |
| 2600 | goto failed; |
| 2601 | Py_DECREF(value); |
| 2602 | value = ast2obj_expr_context(o->v.Tuple.ctx); |
| 2603 | if (!value) goto failed; |
| 2604 | if (PyObject_SetAttrString(result, "ctx", value) == -1) |
| 2605 | goto failed; |
| 2606 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2607 | break; |
| 2608 | } |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 2609 | value = ast2obj_int(o->lineno); |
| 2610 | if (!value) goto failed; |
Martin v. Löwis | 03e5bc0 | 2006-03-02 00:31:27 +0000 | [diff] [blame] | 2611 | if (PyObject_SetAttrString(result, "lineno", value) < 0) |
| 2612 | goto failed; |
| 2613 | Py_DECREF(value); |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2614 | value = ast2obj_int(o->col_offset); |
| 2615 | if (!value) goto failed; |
Martin v. Löwis | 03e5bc0 | 2006-03-02 00:31:27 +0000 | [diff] [blame] | 2616 | if (PyObject_SetAttrString(result, "col_offset", value) < 0) |
| 2617 | goto failed; |
| 2618 | Py_DECREF(value); |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2619 | return result; |
| 2620 | failed: |
| 2621 | Py_XDECREF(value); |
| 2622 | Py_XDECREF(result); |
| 2623 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2624 | } |
| 2625 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2626 | PyObject* ast2obj_expr_context(expr_context_ty o) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2627 | { |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2628 | switch(o) { |
| 2629 | case Load: |
| 2630 | Py_INCREF(Load_singleton); |
| 2631 | return Load_singleton; |
| 2632 | case Store: |
| 2633 | Py_INCREF(Store_singleton); |
| 2634 | return Store_singleton; |
| 2635 | case Del: |
| 2636 | Py_INCREF(Del_singleton); |
| 2637 | return Del_singleton; |
| 2638 | case AugLoad: |
| 2639 | Py_INCREF(AugLoad_singleton); |
| 2640 | return AugLoad_singleton; |
| 2641 | case AugStore: |
| 2642 | Py_INCREF(AugStore_singleton); |
| 2643 | return AugStore_singleton; |
| 2644 | case Param: |
| 2645 | Py_INCREF(Param_singleton); |
| 2646 | return Param_singleton; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2647 | } |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2648 | return NULL; /* cannot happen */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2649 | } |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2650 | PyObject* |
| 2651 | ast2obj_slice(void* _o) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2652 | { |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2653 | slice_ty o = (slice_ty)_o; |
| 2654 | PyObject *result = NULL, *value = NULL; |
| 2655 | if (!o) { |
| 2656 | Py_INCREF(Py_None); |
| 2657 | return Py_None; |
| 2658 | } |
| 2659 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2660 | switch (o->kind) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2661 | case Slice_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2662 | result = PyType_GenericNew(Slice_type, NULL, NULL); |
| 2663 | if (!result) goto failed; |
| 2664 | value = ast2obj_expr(o->v.Slice.lower); |
| 2665 | if (!value) goto failed; |
| 2666 | if (PyObject_SetAttrString(result, "lower", value) == -1) |
| 2667 | goto failed; |
| 2668 | Py_DECREF(value); |
| 2669 | value = ast2obj_expr(o->v.Slice.upper); |
| 2670 | if (!value) goto failed; |
| 2671 | if (PyObject_SetAttrString(result, "upper", value) == -1) |
| 2672 | goto failed; |
| 2673 | Py_DECREF(value); |
| 2674 | value = ast2obj_expr(o->v.Slice.step); |
| 2675 | if (!value) goto failed; |
| 2676 | if (PyObject_SetAttrString(result, "step", value) == -1) |
| 2677 | goto failed; |
| 2678 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2679 | break; |
| 2680 | case ExtSlice_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2681 | result = PyType_GenericNew(ExtSlice_type, NULL, NULL); |
| 2682 | if (!result) goto failed; |
| 2683 | value = ast2obj_list(o->v.ExtSlice.dims, ast2obj_slice); |
| 2684 | if (!value) goto failed; |
| 2685 | if (PyObject_SetAttrString(result, "dims", value) == -1) |
| 2686 | goto failed; |
| 2687 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2688 | break; |
| 2689 | case Index_kind: |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2690 | result = PyType_GenericNew(Index_type, NULL, NULL); |
| 2691 | if (!result) goto failed; |
| 2692 | value = ast2obj_expr(o->v.Index.value); |
| 2693 | if (!value) goto failed; |
| 2694 | if (PyObject_SetAttrString(result, "value", value) == -1) |
| 2695 | goto failed; |
| 2696 | Py_DECREF(value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2697 | break; |
| 2698 | } |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2699 | return result; |
| 2700 | failed: |
| 2701 | Py_XDECREF(value); |
| 2702 | Py_XDECREF(result); |
| 2703 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2704 | } |
| 2705 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2706 | PyObject* ast2obj_boolop(boolop_ty o) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2707 | { |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2708 | switch(o) { |
| 2709 | case And: |
| 2710 | Py_INCREF(And_singleton); |
| 2711 | return And_singleton; |
| 2712 | case Or: |
| 2713 | Py_INCREF(Or_singleton); |
| 2714 | return Or_singleton; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2715 | } |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2716 | return NULL; /* cannot happen */ |
| 2717 | } |
| 2718 | PyObject* ast2obj_operator(operator_ty o) |
| 2719 | { |
| 2720 | switch(o) { |
| 2721 | case Add: |
| 2722 | Py_INCREF(Add_singleton); |
| 2723 | return Add_singleton; |
| 2724 | case Sub: |
| 2725 | Py_INCREF(Sub_singleton); |
| 2726 | return Sub_singleton; |
| 2727 | case Mult: |
| 2728 | Py_INCREF(Mult_singleton); |
| 2729 | return Mult_singleton; |
| 2730 | case Div: |
| 2731 | Py_INCREF(Div_singleton); |
| 2732 | return Div_singleton; |
| 2733 | case Mod: |
| 2734 | Py_INCREF(Mod_singleton); |
| 2735 | return Mod_singleton; |
| 2736 | case Pow: |
| 2737 | Py_INCREF(Pow_singleton); |
| 2738 | return Pow_singleton; |
| 2739 | case LShift: |
| 2740 | Py_INCREF(LShift_singleton); |
| 2741 | return LShift_singleton; |
| 2742 | case RShift: |
| 2743 | Py_INCREF(RShift_singleton); |
| 2744 | return RShift_singleton; |
| 2745 | case BitOr: |
| 2746 | Py_INCREF(BitOr_singleton); |
| 2747 | return BitOr_singleton; |
| 2748 | case BitXor: |
| 2749 | Py_INCREF(BitXor_singleton); |
| 2750 | return BitXor_singleton; |
| 2751 | case BitAnd: |
| 2752 | Py_INCREF(BitAnd_singleton); |
| 2753 | return BitAnd_singleton; |
| 2754 | case FloorDiv: |
| 2755 | Py_INCREF(FloorDiv_singleton); |
| 2756 | return FloorDiv_singleton; |
| 2757 | } |
| 2758 | return NULL; /* cannot happen */ |
| 2759 | } |
| 2760 | PyObject* ast2obj_unaryop(unaryop_ty o) |
| 2761 | { |
| 2762 | switch(o) { |
| 2763 | case Invert: |
| 2764 | Py_INCREF(Invert_singleton); |
| 2765 | return Invert_singleton; |
| 2766 | case Not: |
| 2767 | Py_INCREF(Not_singleton); |
| 2768 | return Not_singleton; |
| 2769 | case UAdd: |
| 2770 | Py_INCREF(UAdd_singleton); |
| 2771 | return UAdd_singleton; |
| 2772 | case USub: |
| 2773 | Py_INCREF(USub_singleton); |
| 2774 | return USub_singleton; |
| 2775 | } |
| 2776 | return NULL; /* cannot happen */ |
| 2777 | } |
| 2778 | PyObject* ast2obj_cmpop(cmpop_ty o) |
| 2779 | { |
| 2780 | switch(o) { |
| 2781 | case Eq: |
| 2782 | Py_INCREF(Eq_singleton); |
| 2783 | return Eq_singleton; |
| 2784 | case NotEq: |
| 2785 | Py_INCREF(NotEq_singleton); |
| 2786 | return NotEq_singleton; |
| 2787 | case Lt: |
| 2788 | Py_INCREF(Lt_singleton); |
| 2789 | return Lt_singleton; |
| 2790 | case LtE: |
| 2791 | Py_INCREF(LtE_singleton); |
| 2792 | return LtE_singleton; |
| 2793 | case Gt: |
| 2794 | Py_INCREF(Gt_singleton); |
| 2795 | return Gt_singleton; |
| 2796 | case GtE: |
| 2797 | Py_INCREF(GtE_singleton); |
| 2798 | return GtE_singleton; |
| 2799 | case Is: |
| 2800 | Py_INCREF(Is_singleton); |
| 2801 | return Is_singleton; |
| 2802 | case IsNot: |
| 2803 | Py_INCREF(IsNot_singleton); |
| 2804 | return IsNot_singleton; |
| 2805 | case In: |
| 2806 | Py_INCREF(In_singleton); |
| 2807 | return In_singleton; |
| 2808 | case NotIn: |
| 2809 | Py_INCREF(NotIn_singleton); |
| 2810 | return NotIn_singleton; |
| 2811 | } |
| 2812 | return NULL; /* cannot happen */ |
| 2813 | } |
| 2814 | PyObject* |
| 2815 | ast2obj_comprehension(void* _o) |
| 2816 | { |
| 2817 | comprehension_ty o = (comprehension_ty)_o; |
| 2818 | PyObject *result = NULL, *value = NULL; |
| 2819 | if (!o) { |
| 2820 | Py_INCREF(Py_None); |
| 2821 | return Py_None; |
| 2822 | } |
| 2823 | |
| 2824 | result = PyType_GenericNew(comprehension_type, NULL, NULL); |
| 2825 | if (!result) return NULL; |
| 2826 | value = ast2obj_expr(o->target); |
| 2827 | if (!value) goto failed; |
| 2828 | if (PyObject_SetAttrString(result, "target", value) == -1) |
| 2829 | goto failed; |
| 2830 | Py_DECREF(value); |
| 2831 | value = ast2obj_expr(o->iter); |
| 2832 | if (!value) goto failed; |
| 2833 | if (PyObject_SetAttrString(result, "iter", value) == -1) |
| 2834 | goto failed; |
| 2835 | Py_DECREF(value); |
| 2836 | value = ast2obj_list(o->ifs, ast2obj_expr); |
| 2837 | if (!value) goto failed; |
| 2838 | if (PyObject_SetAttrString(result, "ifs", value) == -1) |
| 2839 | goto failed; |
| 2840 | Py_DECREF(value); |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2841 | return result; |
| 2842 | failed: |
| 2843 | Py_XDECREF(value); |
| 2844 | Py_XDECREF(result); |
| 2845 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2846 | } |
| 2847 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2848 | PyObject* |
| 2849 | ast2obj_excepthandler(void* _o) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2850 | { |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2851 | excepthandler_ty o = (excepthandler_ty)_o; |
| 2852 | PyObject *result = NULL, *value = NULL; |
| 2853 | if (!o) { |
| 2854 | Py_INCREF(Py_None); |
| 2855 | return Py_None; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2856 | } |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2857 | |
| 2858 | result = PyType_GenericNew(excepthandler_type, NULL, NULL); |
| 2859 | if (!result) return NULL; |
| 2860 | value = ast2obj_expr(o->type); |
| 2861 | if (!value) goto failed; |
| 2862 | if (PyObject_SetAttrString(result, "type", value) == -1) |
| 2863 | goto failed; |
| 2864 | Py_DECREF(value); |
Guido van Rossum | 16be03e | 2007-01-10 18:51:35 +0000 | [diff] [blame] | 2865 | value = ast2obj_identifier(o->name); |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2866 | if (!value) goto failed; |
| 2867 | if (PyObject_SetAttrString(result, "name", value) == -1) |
| 2868 | goto failed; |
| 2869 | Py_DECREF(value); |
| 2870 | value = ast2obj_list(o->body, ast2obj_stmt); |
| 2871 | if (!value) goto failed; |
| 2872 | if (PyObject_SetAttrString(result, "body", value) == -1) |
| 2873 | goto failed; |
| 2874 | Py_DECREF(value); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2875 | value = ast2obj_int(o->lineno); |
| 2876 | if (!value) goto failed; |
| 2877 | if (PyObject_SetAttrString(result, "lineno", value) == -1) |
| 2878 | goto failed; |
| 2879 | Py_DECREF(value); |
| 2880 | value = ast2obj_int(o->col_offset); |
| 2881 | if (!value) goto failed; |
| 2882 | if (PyObject_SetAttrString(result, "col_offset", value) == -1) |
| 2883 | goto failed; |
| 2884 | Py_DECREF(value); |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2885 | return result; |
| 2886 | failed: |
| 2887 | Py_XDECREF(value); |
| 2888 | Py_XDECREF(result); |
| 2889 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2890 | } |
| 2891 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2892 | PyObject* |
| 2893 | ast2obj_arguments(void* _o) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2894 | { |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2895 | arguments_ty o = (arguments_ty)_o; |
| 2896 | PyObject *result = NULL, *value = NULL; |
| 2897 | if (!o) { |
| 2898 | Py_INCREF(Py_None); |
| 2899 | return Py_None; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2900 | } |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2901 | |
| 2902 | result = PyType_GenericNew(arguments_type, NULL, NULL); |
| 2903 | if (!result) return NULL; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 2904 | value = ast2obj_list(o->args, ast2obj_arg); |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2905 | if (!value) goto failed; |
| 2906 | if (PyObject_SetAttrString(result, "args", value) == -1) |
| 2907 | goto failed; |
| 2908 | Py_DECREF(value); |
| 2909 | value = ast2obj_identifier(o->vararg); |
| 2910 | if (!value) goto failed; |
| 2911 | if (PyObject_SetAttrString(result, "vararg", value) == -1) |
| 2912 | goto failed; |
| 2913 | Py_DECREF(value); |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 2914 | value = ast2obj_expr(o->varargannotation); |
| 2915 | if (!value) goto failed; |
| 2916 | if (PyObject_SetAttrString(result, "varargannotation", value) == -1) |
| 2917 | goto failed; |
| 2918 | Py_DECREF(value); |
| 2919 | value = ast2obj_list(o->kwonlyargs, ast2obj_arg); |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 2920 | if (!value) goto failed; |
| 2921 | if (PyObject_SetAttrString(result, "kwonlyargs", value) == -1) |
| 2922 | goto failed; |
| 2923 | Py_DECREF(value); |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2924 | value = ast2obj_identifier(o->kwarg); |
| 2925 | if (!value) goto failed; |
| 2926 | if (PyObject_SetAttrString(result, "kwarg", value) == -1) |
| 2927 | goto failed; |
| 2928 | Py_DECREF(value); |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 2929 | value = ast2obj_expr(o->kwargannotation); |
| 2930 | if (!value) goto failed; |
| 2931 | if (PyObject_SetAttrString(result, "kwargannotation", value) == -1) |
| 2932 | goto failed; |
| 2933 | Py_DECREF(value); |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2934 | value = ast2obj_list(o->defaults, ast2obj_expr); |
| 2935 | if (!value) goto failed; |
| 2936 | if (PyObject_SetAttrString(result, "defaults", value) == -1) |
| 2937 | goto failed; |
| 2938 | Py_DECREF(value); |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 2939 | value = ast2obj_list(o->kw_defaults, ast2obj_expr); |
| 2940 | if (!value) goto failed; |
| 2941 | if (PyObject_SetAttrString(result, "kw_defaults", value) == -1) |
| 2942 | goto failed; |
| 2943 | Py_DECREF(value); |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2944 | return result; |
| 2945 | failed: |
| 2946 | Py_XDECREF(value); |
| 2947 | Py_XDECREF(result); |
| 2948 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2949 | } |
| 2950 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2951 | PyObject* |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 2952 | ast2obj_arg(void* _o) |
| 2953 | { |
| 2954 | arg_ty o = (arg_ty)_o; |
| 2955 | PyObject *result = NULL, *value = NULL; |
| 2956 | if (!o) { |
| 2957 | Py_INCREF(Py_None); |
| 2958 | return Py_None; |
| 2959 | } |
| 2960 | |
| 2961 | switch (o->kind) { |
| 2962 | case SimpleArg_kind: |
| 2963 | result = PyType_GenericNew(SimpleArg_type, NULL, NULL); |
| 2964 | if (!result) goto failed; |
| 2965 | value = ast2obj_identifier(o->v.SimpleArg.arg); |
| 2966 | if (!value) goto failed; |
| 2967 | if (PyObject_SetAttrString(result, "arg", value) == -1) |
| 2968 | goto failed; |
| 2969 | Py_DECREF(value); |
| 2970 | value = ast2obj_expr(o->v.SimpleArg.annotation); |
| 2971 | if (!value) goto failed; |
| 2972 | if (PyObject_SetAttrString(result, "annotation", value) == -1) |
| 2973 | goto failed; |
| 2974 | Py_DECREF(value); |
| 2975 | break; |
| 2976 | case NestedArgs_kind: |
| 2977 | result = PyType_GenericNew(NestedArgs_type, NULL, NULL); |
| 2978 | if (!result) goto failed; |
| 2979 | value = ast2obj_list(o->v.NestedArgs.args, ast2obj_arg); |
| 2980 | if (!value) goto failed; |
| 2981 | if (PyObject_SetAttrString(result, "args", value) == -1) |
| 2982 | goto failed; |
| 2983 | Py_DECREF(value); |
| 2984 | break; |
| 2985 | } |
| 2986 | return result; |
| 2987 | failed: |
| 2988 | Py_XDECREF(value); |
| 2989 | Py_XDECREF(result); |
| 2990 | return NULL; |
| 2991 | } |
| 2992 | |
| 2993 | PyObject* |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2994 | ast2obj_keyword(void* _o) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2995 | { |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 2996 | keyword_ty o = (keyword_ty)_o; |
| 2997 | PyObject *result = NULL, *value = NULL; |
| 2998 | if (!o) { |
| 2999 | Py_INCREF(Py_None); |
| 3000 | return Py_None; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3001 | } |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 3002 | |
| 3003 | result = PyType_GenericNew(keyword_type, NULL, NULL); |
| 3004 | if (!result) return NULL; |
| 3005 | value = ast2obj_identifier(o->arg); |
| 3006 | if (!value) goto failed; |
| 3007 | if (PyObject_SetAttrString(result, "arg", value) == -1) |
| 3008 | goto failed; |
| 3009 | Py_DECREF(value); |
| 3010 | value = ast2obj_expr(o->value); |
| 3011 | if (!value) goto failed; |
| 3012 | if (PyObject_SetAttrString(result, "value", value) == -1) |
| 3013 | goto failed; |
| 3014 | Py_DECREF(value); |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 3015 | return result; |
| 3016 | failed: |
| 3017 | Py_XDECREF(value); |
| 3018 | Py_XDECREF(result); |
| 3019 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3020 | } |
| 3021 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 3022 | PyObject* |
| 3023 | ast2obj_alias(void* _o) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3024 | { |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 3025 | alias_ty o = (alias_ty)_o; |
| 3026 | PyObject *result = NULL, *value = NULL; |
| 3027 | if (!o) { |
| 3028 | Py_INCREF(Py_None); |
| 3029 | return Py_None; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3030 | } |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 3031 | |
| 3032 | result = PyType_GenericNew(alias_type, NULL, NULL); |
| 3033 | if (!result) return NULL; |
| 3034 | value = ast2obj_identifier(o->name); |
| 3035 | if (!value) goto failed; |
| 3036 | if (PyObject_SetAttrString(result, "name", value) == -1) |
| 3037 | goto failed; |
| 3038 | Py_DECREF(value); |
| 3039 | value = ast2obj_identifier(o->asname); |
| 3040 | if (!value) goto failed; |
| 3041 | if (PyObject_SetAttrString(result, "asname", value) == -1) |
| 3042 | goto failed; |
| 3043 | Py_DECREF(value); |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 3044 | return result; |
| 3045 | failed: |
| 3046 | Py_XDECREF(value); |
| 3047 | Py_XDECREF(result); |
| 3048 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3049 | } |
| 3050 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3051 | |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 3052 | PyMODINIT_FUNC |
| 3053 | init_ast(void) |
| 3054 | { |
| 3055 | PyObject *m, *d; |
| 3056 | if (!init_types()) return; |
| 3057 | m = Py_InitModule3("_ast", NULL, NULL); |
| 3058 | if (!m) return; |
| 3059 | d = PyModule_GetDict(m); |
| 3060 | if (PyDict_SetItemString(d, "AST", (PyObject*)AST_type) < 0) return; |
| 3061 | if (PyModule_AddIntConstant(m, "PyCF_ONLY_AST", PyCF_ONLY_AST) < 0) |
| 3062 | return; |
Brett Cannon | 5b198e8 | 2007-02-27 20:16:01 +0000 | [diff] [blame] | 3063 | if (PyModule_AddStringConstant(m, "__version__", "53986") < 0) |
Martin v. Löwis | ace990c | 2006-02-28 00:32:31 +0000 | [diff] [blame] | 3064 | return; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 3065 | if (PyDict_SetItemString(d, "mod", (PyObject*)mod_type) < 0) return; |
| 3066 | if (PyDict_SetItemString(d, "Module", (PyObject*)Module_type) < 0) |
| 3067 | return; |
| 3068 | if (PyDict_SetItemString(d, "Interactive", (PyObject*)Interactive_type) |
| 3069 | < 0) return; |
| 3070 | if (PyDict_SetItemString(d, "Expression", (PyObject*)Expression_type) < |
| 3071 | 0) return; |
| 3072 | if (PyDict_SetItemString(d, "Suite", (PyObject*)Suite_type) < 0) return; |
| 3073 | if (PyDict_SetItemString(d, "stmt", (PyObject*)stmt_type) < 0) return; |
| 3074 | if (PyDict_SetItemString(d, "FunctionDef", (PyObject*)FunctionDef_type) |
| 3075 | < 0) return; |
| 3076 | if (PyDict_SetItemString(d, "ClassDef", (PyObject*)ClassDef_type) < 0) |
| 3077 | return; |
| 3078 | if (PyDict_SetItemString(d, "Return", (PyObject*)Return_type) < 0) |
| 3079 | return; |
| 3080 | if (PyDict_SetItemString(d, "Delete", (PyObject*)Delete_type) < 0) |
| 3081 | return; |
| 3082 | if (PyDict_SetItemString(d, "Assign", (PyObject*)Assign_type) < 0) |
| 3083 | return; |
| 3084 | if (PyDict_SetItemString(d, "AugAssign", (PyObject*)AugAssign_type) < |
| 3085 | 0) return; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 3086 | if (PyDict_SetItemString(d, "For", (PyObject*)For_type) < 0) return; |
| 3087 | if (PyDict_SetItemString(d, "While", (PyObject*)While_type) < 0) return; |
| 3088 | if (PyDict_SetItemString(d, "If", (PyObject*)If_type) < 0) return; |
| 3089 | if (PyDict_SetItemString(d, "With", (PyObject*)With_type) < 0) return; |
| 3090 | if (PyDict_SetItemString(d, "Raise", (PyObject*)Raise_type) < 0) return; |
| 3091 | if (PyDict_SetItemString(d, "TryExcept", (PyObject*)TryExcept_type) < |
| 3092 | 0) return; |
| 3093 | if (PyDict_SetItemString(d, "TryFinally", (PyObject*)TryFinally_type) < |
| 3094 | 0) return; |
| 3095 | if (PyDict_SetItemString(d, "Assert", (PyObject*)Assert_type) < 0) |
| 3096 | return; |
| 3097 | if (PyDict_SetItemString(d, "Import", (PyObject*)Import_type) < 0) |
| 3098 | return; |
| 3099 | if (PyDict_SetItemString(d, "ImportFrom", (PyObject*)ImportFrom_type) < |
| 3100 | 0) return; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 3101 | if (PyDict_SetItemString(d, "Global", (PyObject*)Global_type) < 0) |
| 3102 | return; |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 3103 | if (PyDict_SetItemString(d, "Nonlocal", (PyObject*)Nonlocal_type) < 0) |
| 3104 | return; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 3105 | if (PyDict_SetItemString(d, "Expr", (PyObject*)Expr_type) < 0) return; |
| 3106 | if (PyDict_SetItemString(d, "Pass", (PyObject*)Pass_type) < 0) return; |
| 3107 | if (PyDict_SetItemString(d, "Break", (PyObject*)Break_type) < 0) return; |
| 3108 | if (PyDict_SetItemString(d, "Continue", (PyObject*)Continue_type) < 0) |
| 3109 | return; |
| 3110 | if (PyDict_SetItemString(d, "expr", (PyObject*)expr_type) < 0) return; |
| 3111 | if (PyDict_SetItemString(d, "BoolOp", (PyObject*)BoolOp_type) < 0) |
| 3112 | return; |
| 3113 | if (PyDict_SetItemString(d, "BinOp", (PyObject*)BinOp_type) < 0) return; |
| 3114 | if (PyDict_SetItemString(d, "UnaryOp", (PyObject*)UnaryOp_type) < 0) |
| 3115 | return; |
| 3116 | if (PyDict_SetItemString(d, "Lambda", (PyObject*)Lambda_type) < 0) |
| 3117 | return; |
| 3118 | if (PyDict_SetItemString(d, "IfExp", (PyObject*)IfExp_type) < 0) return; |
| 3119 | if (PyDict_SetItemString(d, "Dict", (PyObject*)Dict_type) < 0) return; |
Guido van Rossum | 86e58e2 | 2006-08-28 15:27:34 +0000 | [diff] [blame] | 3120 | if (PyDict_SetItemString(d, "Set", (PyObject*)Set_type) < 0) return; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 3121 | if (PyDict_SetItemString(d, "ListComp", (PyObject*)ListComp_type) < 0) |
| 3122 | return; |
| 3123 | if (PyDict_SetItemString(d, "GeneratorExp", |
| 3124 | (PyObject*)GeneratorExp_type) < 0) return; |
| 3125 | if (PyDict_SetItemString(d, "Yield", (PyObject*)Yield_type) < 0) return; |
| 3126 | if (PyDict_SetItemString(d, "Compare", (PyObject*)Compare_type) < 0) |
| 3127 | return; |
| 3128 | if (PyDict_SetItemString(d, "Call", (PyObject*)Call_type) < 0) return; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 3129 | if (PyDict_SetItemString(d, "Num", (PyObject*)Num_type) < 0) return; |
| 3130 | if (PyDict_SetItemString(d, "Str", (PyObject*)Str_type) < 0) return; |
Thomas Wouters | 00e41de | 2007-02-23 19:56:57 +0000 | [diff] [blame] | 3131 | if (PyDict_SetItemString(d, "Bytes", (PyObject*)Bytes_type) < 0) return; |
Georg Brandl | 52318d6 | 2006-09-06 07:06:08 +0000 | [diff] [blame] | 3132 | if (PyDict_SetItemString(d, "Ellipsis", (PyObject*)Ellipsis_type) < 0) |
| 3133 | return; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 3134 | if (PyDict_SetItemString(d, "Attribute", (PyObject*)Attribute_type) < |
| 3135 | 0) return; |
| 3136 | if (PyDict_SetItemString(d, "Subscript", (PyObject*)Subscript_type) < |
| 3137 | 0) return; |
| 3138 | if (PyDict_SetItemString(d, "Name", (PyObject*)Name_type) < 0) return; |
| 3139 | if (PyDict_SetItemString(d, "List", (PyObject*)List_type) < 0) return; |
| 3140 | if (PyDict_SetItemString(d, "Tuple", (PyObject*)Tuple_type) < 0) return; |
| 3141 | if (PyDict_SetItemString(d, "expr_context", |
| 3142 | (PyObject*)expr_context_type) < 0) return; |
| 3143 | if (PyDict_SetItemString(d, "Load", (PyObject*)Load_type) < 0) return; |
| 3144 | if (PyDict_SetItemString(d, "Store", (PyObject*)Store_type) < 0) return; |
| 3145 | if (PyDict_SetItemString(d, "Del", (PyObject*)Del_type) < 0) return; |
| 3146 | if (PyDict_SetItemString(d, "AugLoad", (PyObject*)AugLoad_type) < 0) |
| 3147 | return; |
| 3148 | if (PyDict_SetItemString(d, "AugStore", (PyObject*)AugStore_type) < 0) |
| 3149 | return; |
| 3150 | if (PyDict_SetItemString(d, "Param", (PyObject*)Param_type) < 0) return; |
| 3151 | if (PyDict_SetItemString(d, "slice", (PyObject*)slice_type) < 0) return; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 3152 | if (PyDict_SetItemString(d, "Slice", (PyObject*)Slice_type) < 0) return; |
| 3153 | if (PyDict_SetItemString(d, "ExtSlice", (PyObject*)ExtSlice_type) < 0) |
| 3154 | return; |
| 3155 | if (PyDict_SetItemString(d, "Index", (PyObject*)Index_type) < 0) return; |
| 3156 | if (PyDict_SetItemString(d, "boolop", (PyObject*)boolop_type) < 0) |
| 3157 | return; |
| 3158 | if (PyDict_SetItemString(d, "And", (PyObject*)And_type) < 0) return; |
| 3159 | if (PyDict_SetItemString(d, "Or", (PyObject*)Or_type) < 0) return; |
| 3160 | if (PyDict_SetItemString(d, "operator", (PyObject*)operator_type) < 0) |
| 3161 | return; |
| 3162 | if (PyDict_SetItemString(d, "Add", (PyObject*)Add_type) < 0) return; |
| 3163 | if (PyDict_SetItemString(d, "Sub", (PyObject*)Sub_type) < 0) return; |
| 3164 | if (PyDict_SetItemString(d, "Mult", (PyObject*)Mult_type) < 0) return; |
| 3165 | if (PyDict_SetItemString(d, "Div", (PyObject*)Div_type) < 0) return; |
| 3166 | if (PyDict_SetItemString(d, "Mod", (PyObject*)Mod_type) < 0) return; |
| 3167 | if (PyDict_SetItemString(d, "Pow", (PyObject*)Pow_type) < 0) return; |
| 3168 | if (PyDict_SetItemString(d, "LShift", (PyObject*)LShift_type) < 0) |
| 3169 | return; |
| 3170 | if (PyDict_SetItemString(d, "RShift", (PyObject*)RShift_type) < 0) |
| 3171 | return; |
| 3172 | if (PyDict_SetItemString(d, "BitOr", (PyObject*)BitOr_type) < 0) return; |
| 3173 | if (PyDict_SetItemString(d, "BitXor", (PyObject*)BitXor_type) < 0) |
| 3174 | return; |
| 3175 | if (PyDict_SetItemString(d, "BitAnd", (PyObject*)BitAnd_type) < 0) |
| 3176 | return; |
| 3177 | if (PyDict_SetItemString(d, "FloorDiv", (PyObject*)FloorDiv_type) < 0) |
| 3178 | return; |
| 3179 | if (PyDict_SetItemString(d, "unaryop", (PyObject*)unaryop_type) < 0) |
| 3180 | return; |
| 3181 | if (PyDict_SetItemString(d, "Invert", (PyObject*)Invert_type) < 0) |
| 3182 | return; |
| 3183 | if (PyDict_SetItemString(d, "Not", (PyObject*)Not_type) < 0) return; |
| 3184 | if (PyDict_SetItemString(d, "UAdd", (PyObject*)UAdd_type) < 0) return; |
| 3185 | if (PyDict_SetItemString(d, "USub", (PyObject*)USub_type) < 0) return; |
| 3186 | if (PyDict_SetItemString(d, "cmpop", (PyObject*)cmpop_type) < 0) return; |
| 3187 | if (PyDict_SetItemString(d, "Eq", (PyObject*)Eq_type) < 0) return; |
| 3188 | if (PyDict_SetItemString(d, "NotEq", (PyObject*)NotEq_type) < 0) return; |
| 3189 | if (PyDict_SetItemString(d, "Lt", (PyObject*)Lt_type) < 0) return; |
| 3190 | if (PyDict_SetItemString(d, "LtE", (PyObject*)LtE_type) < 0) return; |
| 3191 | if (PyDict_SetItemString(d, "Gt", (PyObject*)Gt_type) < 0) return; |
| 3192 | if (PyDict_SetItemString(d, "GtE", (PyObject*)GtE_type) < 0) return; |
| 3193 | if (PyDict_SetItemString(d, "Is", (PyObject*)Is_type) < 0) return; |
| 3194 | if (PyDict_SetItemString(d, "IsNot", (PyObject*)IsNot_type) < 0) return; |
| 3195 | if (PyDict_SetItemString(d, "In", (PyObject*)In_type) < 0) return; |
| 3196 | if (PyDict_SetItemString(d, "NotIn", (PyObject*)NotIn_type) < 0) return; |
| 3197 | if (PyDict_SetItemString(d, "comprehension", |
| 3198 | (PyObject*)comprehension_type) < 0) return; |
| 3199 | if (PyDict_SetItemString(d, "excepthandler", |
| 3200 | (PyObject*)excepthandler_type) < 0) return; |
| 3201 | if (PyDict_SetItemString(d, "arguments", (PyObject*)arguments_type) < |
| 3202 | 0) return; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 3203 | if (PyDict_SetItemString(d, "arg", (PyObject*)arg_type) < 0) return; |
| 3204 | if (PyDict_SetItemString(d, "SimpleArg", (PyObject*)SimpleArg_type) < |
| 3205 | 0) return; |
| 3206 | if (PyDict_SetItemString(d, "NestedArgs", (PyObject*)NestedArgs_type) < |
| 3207 | 0) return; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 3208 | if (PyDict_SetItemString(d, "keyword", (PyObject*)keyword_type) < 0) |
| 3209 | return; |
| 3210 | if (PyDict_SetItemString(d, "alias", (PyObject*)alias_type) < 0) return; |
Martin v. Löwis | 577b5b9 | 2006-02-27 15:23:19 +0000 | [diff] [blame] | 3211 | } |
| 3212 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3213 | |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 3214 | PyObject* PyAST_mod2obj(mod_ty t) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3215 | { |
Martin v. Löwis | bd260da | 2006-02-26 19:42:26 +0000 | [diff] [blame] | 3216 | init_types(); |
| 3217 | return ast2obj_mod(t); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3218 | } |
| 3219 | |
Neal Norwitz | 7b5a604 | 2005-11-13 19:14:20 +0000 | [diff] [blame] | 3220 | |