File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
branches/try/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 2
2
refs/heads/master: 0e4d1fc8cae42e15e00f71d9f439b01bb25a86ae
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 6c08cc2db4f98e9f07ae7d50338396c4123c2f0a
5
- refs/heads/try: bed669cba6c20e3bdbe01e87ce4566b60d7bc232
5
+ refs/heads/try: 77d9ac37fc866743b91c0da2951d42c459bb74c5
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
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