add temporarily unused ctxt field to mac_invoc_tt

This commit is contained in:
John Clements
2013-07-03 15:16:04 -07:00
parent 3621c674cc
commit 09e6dda4f2
5 changed files with 14 additions and 13 deletions

View File

@@ -116,9 +116,10 @@ fn fold_arg_(a: arg, fld: @ast_fold) -> arg {
fn fold_mac_(m: &mac, fld: @ast_fold) -> mac {
Spanned {
node: match m.node {
mac_invoc_tt(ref p,ref tts) =>
mac_invoc_tt(ref p,ref tts,ctxt) =>
mac_invoc_tt(fld.fold_path(p),
fold_tts(*tts,|id|{fld.fold_ident(id)}))
fold_tts(*tts,|id|{fld.fold_ident(id)}),
ctxt)
},
span: fld.new_span(m.span)
}