comparison src/ast_dump.rs @ 21:7af637f444d1

Add ast.Delete
author Bastien Orivel <eijebong@bananium.fr>
date Fri, 03 Jun 2016 10:52:02 +0200
parents 0cb53a31ac12
children 25b202005d1d
comparison
equal deleted inserted replaced
20:ace12d6b9855 21:7af637f444d1
200 exprs.join(", ") 200 exprs.join(", ")
201 */ 201 */
202 "".to_string() 202 "".to_string()
203 }), 203 }),
204 stmt::Expr(expr) => format!("{}{}", current_indent, expr.to_string()), 204 stmt::Expr(expr) => format!("{}{}", current_indent, expr.to_string()),
205 stmt::Break => format!("{}break", current_indent) 205 stmt::Break => format!("{}break", current_indent),
206 stmt::Delete(targets) => format!("{}del {}", current_indent, args_to_string(targets))
206 } 207 }
207 } 208 }
208 } 209 }
209 210
210 #[allow(dead_code)] 211 #[allow(dead_code)]