Visit item macros.

This commit is contained in:
Eric Holk 2012-07-10 13:24:22 -07:00
parent 22e955a76a
commit 877ebed6cf
3 changed files with 3 additions and 4 deletions

View file

@ -1352,7 +1352,7 @@ fn found_def_item(i: @ast::item, ns: namespace) -> option<def> {
}
}
ast::item_impl(*) { /* ??? */ }
ast::item_mac(*) { fail "item macros unimplemented" }
ast::item_mac(*) { /* ???? */ }
}
ret none;
}
@ -1660,7 +1660,7 @@ fn index_mod(md: ast::_mod) -> mod_index {
add_to_index(index, it.ident, mie_item(it));
}
ast::item_mac(*) {
fail "item macros unimplemented"
/* ??? */
}
}
}