Skip to content

Commit d3bdd64

Browse files
committed
---
yaml --- r: 15435 b: refs/heads/try c: aeca5ba h: refs/heads/master i: 15433: 7eb2b74 15431: 2c26894 v: v3
1 parent 71eee84 commit d3bdd64

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: 7a3b29024548e1dcb13590002d5cf4dd94ddd4d4
5+
refs/heads/try: aeca5bae90cdb0654073babf8799e97675c9bec0
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/librustsyntax/parse/parser.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ fn parse_ty_postfix(orig_t: ast::ty_, p: parser, colons_before_params: bool,
392392

393393
if p.token == token::BINOP(token::SLASH) {
394394
let orig_hi = p.last_span.hi;
395-
alt parse_maybe_vstore(p) {
395+
alt maybe_parse_vstore(p) {
396396
none { }
397397
some(v) {
398398
let t = ast::ty_vstore(mk_ty(p, orig_t, lo, orig_hi), v);
@@ -693,7 +693,7 @@ fn have_dollar(p: parser) -> option<ast::mac_> {
693693
}
694694
}
695695

696-
fn parse_maybe_vstore(p: parser) -> option<ast::vstore> {
696+
fn maybe_parse_vstore(p: parser) -> option<ast::vstore> {
697697
if p.token == token::BINOP(token::SLASH) {
698698
p.bump();
699699
alt p.token {
@@ -1060,7 +1060,7 @@ fn parse_bottom_expr(p: parser) -> pexpr {
10601060
alt ex {
10611061
ast::expr_lit(@{node: ast::lit_str(_), span: _}) |
10621062
ast::expr_vec(_, _) {
1063-
alt parse_maybe_vstore(p) {
1063+
alt maybe_parse_vstore(p) {
10641064
none { }
10651065
some(v) {
10661066
hi = p.span.hi;

0 commit comments

Comments
 (0)