Mercurial > python-compiler.rs
comparison src/python_ast.rs @ 52:d9838e8b3ec5
Add ast.Ellipsis.
author | Bastien Orivel <eijebong@bananium.fr> |
---|---|
date | Wed, 08 Jun 2016 19:01:46 +0200 |
parents | ded1907b7a69 |
children | c3cc16b933d2 |
comparison
equal
deleted
inserted
replaced
51:ded1907b7a69 | 52:d9838e8b3ec5 |
---|---|
101 Call(Box<expr>, Vec<expr>, Vec<keyword>), | 101 Call(Box<expr>, Vec<expr>, Vec<keyword>), |
102 Num(String), | 102 Num(String), |
103 Str(String), | 103 Str(String), |
104 //Bytes(String), | 104 //Bytes(String), |
105 NameConstant(String), | 105 NameConstant(String), |
106 //Ellipsis, | 106 Ellipsis, |
107 | 107 |
108 // the following expression can appear in assignment context | 108 // the following expression can appear in assignment context |
109 Attribute(Box<expr>, String, expr_context), | 109 Attribute(Box<expr>, String, expr_context), |
110 //Subscript(Box<expr>, slice, expr_context), | 110 //Subscript(Box<expr>, slice, expr_context), |
111 //Starred(Box<expr>, expr_context), | 111 //Starred(Box<expr>, expr_context), |