Revert "syntax: Remove a couple of implicit copies" due to test failures
This reverts commit 46b12d3e05
.
This commit is contained in:
parent
8ce0215f1b
commit
436b77c9f8
@ -679,7 +679,7 @@ fn mk_expr(lo: uint, hi: uint, +node: expr_) -> @expr {
|
||||
ret @{id: self.get_id(), node: node, span: mk_sp(lo, hi)};
|
||||
}
|
||||
|
||||
fn mk_mac_expr(lo: uint, hi: uint, +m: mac_) -> @expr {
|
||||
fn mk_mac_expr(lo: uint, hi: uint, m: mac_) -> @expr {
|
||||
ret @{id: self.get_id(),
|
||||
node: expr_mac({node: m, span: mk_sp(lo, hi)}),
|
||||
span: mk_sp(lo, hi)};
|
||||
@ -693,7 +693,7 @@ fn mk_lit_u32(i: u32) -> @expr {
|
||||
ret @{id: self.get_id(), node: expr_lit(lv_lit), span: span};
|
||||
}
|
||||
|
||||
fn mk_pexpr(lo: uint, hi: uint, +node: expr_) -> pexpr {
|
||||
fn mk_pexpr(lo: uint, hi: uint, node: expr_) -> pexpr {
|
||||
ret pexpr(self.mk_expr(lo, hi, node));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user