comparison src/python_ast.rs @ 60:9f0f457a67f6

Add ast.Raise.
author Bastien Orivel <eijebong@bananium.fr>
date Mon, 13 Jun 2016 01:24:09 +0200
parents 407b3b217928
children d255a932553f
comparison
equal deleted inserted replaced
59:407b3b217928 60:9f0f457a67f6
44 44
45 // AsyncWith(withitem* items, stmt* body) 45 // AsyncWith(withitem* items, stmt* body)
46 //AsyncWith(Vec<withitem>, Vec<stmt>) 46 //AsyncWith(Vec<withitem>, Vec<stmt>)
47 47
48 // Raise(expr? exc, expr? cause) 48 // Raise(expr? exc, expr? cause)
49 //Raise(Option<expr>, Option<expr>) 49 Raise(Option<expr>, Option<expr>),
50 50
51 // Try(stmt* body, excepthandler* handlers, stmt* orelse, stmt* finalbody) 51 // Try(stmt* body, excepthandler* handlers, stmt* orelse, stmt* finalbody)
52 //Try(Vec<stmt>, Vec<excepthandler>, Vec<stmt>, Vec<stmt>) 52 //Try(Vec<stmt>, Vec<excepthandler>, Vec<stmt>, Vec<stmt>)
53 53
54 // Assert(expr test, expr? msg) 54 // Assert(expr test, expr? msg)