Freeze the AST by removing a couple of unused @mut ~[T] from token_tree.

This commit is contained in:
Eduard Burtescu
2013-11-27 17:48:58 +02:00
parent 17af6f7d0c
commit f09b7b0ecd
6 changed files with 25 additions and 14 deletions

View File

@@ -2112,7 +2112,7 @@ impl Parser {
};
tt_seq(
mk_sp(sp.lo, p.span.hi),
@mut seq,
@seq,
s,
z
)
@@ -2157,7 +2157,7 @@ impl Parser {
result.push(parse_any_tt_tok(self));
self.open_braces.pop();
tt_delim(@mut result)
tt_delim(@result)
}
_ => parse_non_delim_tt_tok(self)
}