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

@@ -619,7 +619,7 @@ pub fn print_item(s: @ps, item: &ast::item) {
}
bclose(s, item.span);
}
ast::item_mac(codemap::Spanned { node: ast::mac_invoc_tt(ref pth, ref tts),
ast::item_mac(codemap::Spanned { node: ast::mac_invoc_tt(ref pth, ref tts, ctxt),
_}) => {
print_visibility(s, item.vis);
print_path(s, pth, false);
@@ -1021,7 +1021,7 @@ pub fn print_if(s: @ps, test: &ast::Expr, blk: &ast::Block,
pub fn print_mac(s: @ps, m: &ast::mac) {
match m.node {
ast::mac_invoc_tt(ref pth, ref tts) => {
ast::mac_invoc_tt(ref pth, ref tts, ctxt) => {
print_path(s, pth, false);
word(s.s, "!");
popen(s);