about summary refs log tree commit diff
path: root/src/libsyntax/ast.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-09-04 05:15:22 +0000
committerbors <bors@rust-lang.org>2015-09-04 05:15:22 +0000
commit791e7bcb418381480bf10cb87ef5da769be7143f (patch)
treefdb330304834cc452e1928359b6bff54849af28c /src/libsyntax/ast.rs
parent35b14544e1f5dfdbae169eafe34c393c47d7c1ad (diff)
parentc493084ec1b35b7ab59aa0878354bca10a610360 (diff)
downloadrust-791e7bcb418381480bf10cb87ef5da769be7143f.tar.gz
rust-791e7bcb418381480bf10cb87ef5da769be7143f.zip
Auto merge of #28170 - nagisa:loopctl-label-spans, r=alexcrichton
r? @alexcrichton 
Diffstat (limited to 'src/libsyntax/ast.rs')
-rw-r--r--src/libsyntax/ast.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index ce3989b5bba..bf8c67c7ae1 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -891,9 +891,9 @@ pub enum Expr_ {
     /// A referencing operation (`&a` or `&mut a`)
     ExprAddrOf(Mutability, P<Expr>),
     /// A `break`, with an optional label to break
-    ExprBreak(Option<Ident>),
+    ExprBreak(Option<SpannedIdent>),
     /// A `continue`, with an optional label
-    ExprAgain(Option<Ident>),
+    ExprAgain(Option<SpannedIdent>),
     /// A `return`, with an optional value to be returned
     ExprRet(Option<P<Expr>>),