Neal Norwitz | 19b0f40 | 2005-11-15 04:52:16 +0000 | [diff] [blame] | 1 | -- ASDL's five builtin types are identifier, int, string, object, bool |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2 | |
Martin v. Löwis | eae93b7 | 2006-02-28 00:12:47 +0000 | [diff] [blame] | 3 | module Python version "$Revision$" |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4 | { |
| 5 | mod = Module(stmt* body) |
| 6 | | Interactive(stmt* body) |
| 7 | | Expression(expr body) |
| 8 | |
| 9 | -- not really an actual node but useful in Jython's typesystem. |
| 10 | | Suite(stmt* body) |
| 11 | |
| 12 | stmt = FunctionDef(identifier name, arguments args, |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 13 | stmt* body, expr* decorators, expr? returns) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 14 | | ClassDef(identifier name, expr* bases, stmt* body) |
| 15 | | Return(expr? value) |
| 16 | |
| 17 | | Delete(expr* targets) |
| 18 | | Assign(expr* targets, expr value) |
| 19 | | AugAssign(expr target, operator op, expr value) |
| 20 | |
| 21 | -- not sure if bool is allowed, can always use int |
| 22 | | Print(expr? dest, expr* values, bool nl) |
| 23 | |
| 24 | -- use 'orelse' because else is a keyword in target languages |
| 25 | | For(expr target, expr iter, stmt* body, stmt* orelse) |
| 26 | | While(expr test, stmt* body, stmt* orelse) |
| 27 | | If(expr test, stmt* body, stmt* orelse) |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 28 | | With(expr context_expr, expr? optional_vars, stmt* body) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 29 | |
| 30 | -- 'type' is a bad name |
| 31 | | Raise(expr? type, expr? inst, expr? tback) |
| 32 | | TryExcept(stmt* body, excepthandler* handlers, stmt* orelse) |
| 33 | | TryFinally(stmt* body, stmt* finalbody) |
| 34 | | Assert(expr test, expr? msg) |
| 35 | |
| 36 | | Import(alias* names) |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 37 | | ImportFrom(identifier module, alias* names, int? level) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 38 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 39 | | Global(identifier* names) |
| 40 | | Expr(expr value) |
| 41 | | Pass | Break | Continue |
| 42 | |
| 43 | -- XXX Jython will be different |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 44 | -- col_offset is the byte offset in the utf8 string the parser uses |
| 45 | attributes (int lineno, int col_offset) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 46 | |
| 47 | -- BoolOp() can use left & right? |
| 48 | expr = BoolOp(boolop op, expr* values) |
| 49 | | BinOp(expr left, operator op, expr right) |
| 50 | | UnaryOp(unaryop op, expr operand) |
| 51 | | Lambda(arguments args, expr body) |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 52 | | IfExp(expr test, expr body, expr orelse) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 53 | | Dict(expr* keys, expr* values) |
Guido van Rossum | 86e58e2 | 2006-08-28 15:27:34 +0000 | [diff] [blame] | 54 | | Set(expr* elts) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 55 | | ListComp(expr elt, comprehension* generators) |
| 56 | | GeneratorExp(expr elt, comprehension* generators) |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 57 | -- the grammar constrains where yield expressions can occur |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 58 | | Yield(expr? value) |
| 59 | -- need sequences for compare to distinguish between |
| 60 | -- x < 4 < 3 and (x < 4) < 3 |
| 61 | | Compare(expr left, cmpop* ops, expr* comparators) |
| 62 | | Call(expr func, expr* args, keyword* keywords, |
| 63 | expr? starargs, expr? kwargs) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 64 | | Num(object n) -- a number as a PyObject. |
| 65 | | Str(string s) -- need to specify raw, unicode, etc? |
Georg Brandl | 52318d6 | 2006-09-06 07:06:08 +0000 | [diff] [blame] | 66 | | Ellipsis |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 67 | -- other literals? bools? |
| 68 | |
| 69 | -- the following expression can appear in assignment context |
| 70 | | Attribute(expr value, identifier attr, expr_context ctx) |
| 71 | | Subscript(expr value, slice slice, expr_context ctx) |
| 72 | | Name(identifier id, expr_context ctx) |
| 73 | | List(expr* elts, expr_context ctx) |
| 74 | | Tuple(expr *elts, expr_context ctx) |
| 75 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 76 | -- col_offset is the byte offset in the utf8 string the parser uses |
| 77 | attributes (int lineno, int col_offset) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 78 | |
| 79 | expr_context = Load | Store | Del | AugLoad | AugStore | Param |
| 80 | |
Georg Brandl | 52318d6 | 2006-09-06 07:06:08 +0000 | [diff] [blame] | 81 | slice = Slice(expr? lower, expr? upper, expr? step) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 82 | | ExtSlice(slice* dims) |
| 83 | | Index(expr value) |
| 84 | |
| 85 | boolop = And | Or |
| 86 | |
| 87 | operator = Add | Sub | Mult | Div | Mod | Pow | LShift |
| 88 | | RShift | BitOr | BitXor | BitAnd | FloorDiv |
| 89 | |
| 90 | unaryop = Invert | Not | UAdd | USub |
| 91 | |
| 92 | cmpop = Eq | NotEq | Lt | LtE | Gt | GtE | Is | IsNot | In | NotIn |
| 93 | |
| 94 | comprehension = (expr target, expr iter, expr* ifs) |
| 95 | |
| 96 | -- not sure what to call the first argument for raise and except |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 97 | -- TODO(jhylton): Figure out if there is a better way to handle |
| 98 | -- lineno and col_offset fields, particularly when |
| 99 | -- ast is exposed to Python. |
Guido van Rossum | 16be03e | 2007-01-10 18:51:35 +0000 | [diff] [blame^] | 100 | excepthandler = (expr? type, identifier? name, stmt* body, int lineno, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 101 | int col_offset) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 102 | |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 103 | arguments = (arg* args, identifier? vararg, expr? varargannotation, |
| 104 | arg* kwonlyargs, identifier? kwarg, |
| 105 | expr? kwargannotation, expr* defaults, |
| 106 | expr* kw_defaults) |
| 107 | arg = SimpleArg(identifier arg, expr? annotation) |
| 108 | | NestedArgs(arg* args) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 109 | |
| 110 | -- keyword arguments supplied to call |
| 111 | keyword = (identifier arg, expr value) |
| 112 | |
| 113 | -- import name with optional 'as' alias. |
| 114 | alias = (identifier name, identifier? asname) |
| 115 | } |