Rename ast::ExprKind::Again -> ast::ExprKind::Continue

This commit is contained in:
Jeffrey Seyfried
2016-06-17 02:34:18 +00:00
parent 962d5c16b5
commit f0b21c2d1e
8 changed files with 9 additions and 9 deletions

View File

@@ -1238,7 +1238,7 @@ pub fn noop_fold_expr<T: Folder>(Expr {id, node, span, attrs}: Expr, folder: &mu
respan(folder.new_span(label.span),
folder.fold_ident(label.node)))
),
ExprKind::Again(opt_ident) => ExprKind::Again(opt_ident.map(|label|
ExprKind::Continue(opt_ident) => ExprKind::Continue(opt_ident.map(|label|
respan(folder.new_span(label.span),
folder.fold_ident(label.node)))
),