File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
branches/try/src/libsyntax/parse Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: edeb4f1c86cbf6af8ef9874d4b3af50f721ea1b8
3
3
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4
- refs/heads/try: facdf2ebb1dce9400a8c8ef0d85d7d278654effb
4
+ refs/heads/try: cd138dc4475fa90b007969d0a4e00f230be777cf
5
5
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
6
6
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
7
7
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -2149,7 +2149,7 @@ impl<'a> Parser<'a> {
2149
2149
} else {
2150
2150
ExprAgain ( None )
2151
2151
} ;
2152
- let hi = self . span . hi ;
2152
+ let hi = self . last_span . hi ;
2153
2153
return Ok ( self . mk_expr ( lo, hi, ex) ) ;
2154
2154
}
2155
2155
if try!( self . eat_keyword ( keywords:: Match ) ) {
@@ -2178,7 +2178,7 @@ impl<'a> Parser<'a> {
2178
2178
} else {
2179
2179
ex = ExprBreak ( None ) ;
2180
2180
}
2181
- hi = self . span . hi ;
2181
+ hi = self . last_span . hi ;
2182
2182
} else if self . check ( & token:: ModSep ) ||
2183
2183
self . token . is_ident ( ) &&
2184
2184
!self . check_keyword ( keywords:: True ) &&
You can’t perform that action at this time.
0 commit comments