Skip to content

Commit e0aee5d

Browse files
committed
---
yaml --- r: 59348 b: refs/heads/snap-stage3 c: 6c0c3a4 h: refs/heads/master v: v3
1 parent f33dadb commit e0aee5d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: c081ffbd1e845687202a975ea2e698b623e5722f
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 2ea52a38e59b85b4b6998661b38425ce29839aed
4+
refs/heads/snap-stage3: 6c0c3a44bd779ea35f75cb7dcadcd7e6edb4a433
55
refs/heads/try: c50a9d5b664478e533ba1d1d353213d70c8ad589
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/libsyntax/parse/attr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ impl parser_attr for Parser {
156156
@spanned(lo, hi, ast::meta_list(name, inner_items))
157157
}
158158
_ => {
159-
let hi = self.span.hi;
159+
let hi = self.last_span.hi;
160160
@spanned(lo, hi, ast::meta_word(name))
161161
}
162162
}

branches/snap-stage3/src/libsyntax/parse/common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ pub impl Parser {
122122
fn parse_path_list_ident(&self) -> ast::path_list_ident {
123123
let lo = self.span.lo;
124124
let ident = self.parse_ident();
125-
let hi = self.span.hi;
125+
let hi = self.last_span.hi;
126126
spanned(lo, hi, ast::path_list_ident_ { name: ident,
127127
id: self.get_id() })
128128
}

branches/snap-stage3/src/libsyntax/parse/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ mod test {
591591
types: ~[]},
592592
None // no idea
593593
),
594-
span: sp(0,3)}, // really?
594+
span: sp(0,1)},
595595
id: 4 // fixme
596596
})
597597
}
@@ -628,7 +628,7 @@ mod test {
628628
types: ~[]},
629629
None // no idea
630630
),
631-
span: sp(6,9)}, // bleah.
631+
span: sp(6,7)},
632632
id: 4 // fixme
633633
}],
634634
output: @ast::Ty{id:5, // fixme

branches/snap-stage3/src/libsyntax/parse/parser.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2444,7 +2444,7 @@ pub impl Parser {
24442444
}
24452445
}
24462446
}
2447-
hi = self.span.hi;
2447+
hi = self.last_span.hi;
24482448
}
24492449
}
24502450
@ast::pat { id: self.get_id(), node: pat, span: mk_sp(lo, hi) }
@@ -4307,7 +4307,7 @@ pub impl Parser {
43074307
rp: None,
43084308
types: ~[] };
43094309
return @spanned(lo,
4310-
self.span.hi,
4310+
self.last_span.hi,
43114311
view_path_simple(last, path, self.get_id()));
43124312
}
43134313

0 commit comments

Comments
 (0)