log src/ast_convert.rs @ 68:c59ad5ccd8a6

age author description
Mon, 13 Jun 2016 03:03:13 +0200 Bastien Orivel Add ast.Try
Mon, 13 Jun 2016 01:43:19 +0100 Emmanuel Gil Peyrot Implement class keywords.
Mon, 13 Jun 2016 01:27:10 +0100 Emmanuel Gil Peyrot Add ClassDef.decorator_list support.
Mon, 13 Jun 2016 01:18:48 +0100 Emmanuel Gil Peyrot Add FunctionDef.decorator_list support.
Mon, 13 Jun 2016 00:55:04 +0100 Emmanuel Gil Peyrot Implement FunctionDef.returns.
Mon, 13 Jun 2016 01:48:33 +0200 Bastien Orivel Add a parse_optional_expr function and use it instead of let var = if var == py.None() { None } else { Some(parse_expr(var) };
Mon, 13 Jun 2016 01:24:09 +0200 Bastien Orivel Add ast.Raise.
Sun, 12 Jun 2016 20:14:27 +0200 Bastien Orivel Add ast.With.
Sun, 12 Jun 2016 18:21:15 +0200 Bastien Orivel Add ast.Assert.
Sun, 12 Jun 2016 03:48:24 +0100 Emmanuel Gil Peyrot Implement function arguments of all kinds.
Sun, 12 Jun 2016 02:37:28 +0100 Emmanuel Gil Peyrot Implement keywords in expr::Call, and add some tests.
Wed, 08 Jun 2016 19:01:46 +0200 Bastien Orivel Add ast.Ellipsis.
Wed, 08 Jun 2016 17:26:09 +0200 Bastien Orivel Add ast.Nonlocal.
Wed, 08 Jun 2016 17:21:57 +0200 Bastien Orivel Add ast.Continue.
Wed, 08 Jun 2016 17:18:28 +0200 Bastien Orivel Add ast.Pass.
Tue, 07 Jun 2016 13:34:12 +0200 Bastien Orivel Also handle relative imports.
Tue, 07 Jun 2016 12:51:36 +0200 Bastien Orivel Handle Import and add a test for it.
Tue, 07 Jun 2016 12:19:10 +0200 Bastien Orivel Finish ImportFrom conversion and add a test for it.
Fri, 03 Jun 2016 10:52:02 +0200 Bastien Orivel Add ast.Delete
Fri, 03 Jun 2016 01:22:12 +0100 Emmanuel Gil Peyrot Replace every loop in ast_convert with parse_list.
Fri, 03 Jun 2016 00:55:24 +0100 Emmanuel Gil Peyrot Implement ast.BoolOp, and improve its display.
Fri, 03 Jun 2016 00:10:41 +0200 Bastien Orivel Fix expr_contexts.
Thu, 02 Jun 2016 23:47:54 +0200 Bastien Orivel Add ast.Tuple
Thu, 02 Jun 2016 22:20:48 +0200 Bastien Orivel Add ast.DictComp
Thu, 02 Jun 2016 05:45:22 +0100 Emmanuel Gil Peyrot Add forgotten cmpop values.
Thu, 02 Jun 2016 20:40:24 +0200 Bastien Orivel Add ast.ListComp
Thu, 02 Jun 2016 05:33:23 +0100 Emmanuel Gil Peyrot Import the full AST grammar from CPython 3.5.
Wed, 01 Jun 2016 22:17:28 +0100 Emmanuel Gil Peyrot Add a scoping pass, associating each module/statement with a block.
Tue, 31 May 2016 04:34:42 +0100 Emmanuel Gil Peyrot Add ast.AugAssign.
Tue, 31 May 2016 04:26:58 +0100 Emmanuel Gil Peyrot Add ast.List literal.
Tue, 31 May 2016 04:22:35 +0100 Emmanuel Gil Peyrot Add ast.While and ast.Break.
Tue, 31 May 2016 04:15:00 +0100 Emmanuel Gil Peyrot Add ast.For, ast.UnaryOp, and Sub and Div to ast.BinOp.
Tue, 31 May 2016 03:59:05 +0100 Emmanuel Gil Peyrot Add ast.Attribute.
Tue, 31 May 2016 02:36:24 +0100 Emmanuel Gil Peyrot Remove useless abstraction of function name as Expr.
Tue, 31 May 2016 02:31:55 +0100 Emmanuel Gil Peyrot Add class support.
Tue, 31 May 2016 00:52:00 +0100 Emmanuel Gil Peyrot Factorise conversion of Python str into Rust String.
Sun, 29 May 2016 19:15:02 +0100 Emmanuel Gil Peyrot Hello world!