File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
branches/dist-snap/src/libsyntax/parse Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ refs/heads/try: c274a6888410ce3e357e014568b43310ed787d36
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
- refs/heads/dist-snap: bed669cba6c20e3bdbe01e87ce4566b60d7bc232
9
+ refs/heads/dist-snap: 77d9ac37fc866743b91c0da2951d42c459bb74c5
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
12
12
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
Original file line number Diff line number Diff line change @@ -338,7 +338,7 @@ pub struct Parser {
338
338
/// Used to determine the path to externally loaded source files
339
339
mod_path_stack : @mut ~[ @str ] ,
340
340
/// Stack of spans of open delimiters. Used for error message.
341
- open_braces : @mut ~[ @ Span ]
341
+ open_braces : @mut ~[ Span ]
342
342
}
343
343
344
344
#[ unsafe_destructor]
@@ -2026,7 +2026,7 @@ impl Parser {
2026
2026
match * self . token {
2027
2027
token:: EOF => {
2028
2028
for sp in self . open_braces . iter ( ) {
2029
- self . span_note ( * * sp, "Did you mean to close this delimiter?" ) ;
2029
+ self . span_note ( * sp, "Did you mean to close this delimiter?" ) ;
2030
2030
}
2031
2031
// There shouldn't really be a span, but it's easier for the test runner
2032
2032
// if we give it one
@@ -2036,7 +2036,7 @@ impl Parser {
2036
2036
let close_delim = token:: flip_delimiter ( & * self . token ) ;
2037
2037
2038
2038
// Parse the open delimiter.
2039
- ( * self . open_braces ) . push ( @ * self . span ) ;
2039
+ ( * self . open_braces ) . push ( * self . span ) ;
2040
2040
let mut result = ~[ parse_any_tt_tok ( self ) ] ;
2041
2041
2042
2042
let trees =
You can’t perform that action at this time.
0 commit comments