Skip to content

Commit

Permalink
Fixed "::::" appearing in module_path!()
Browse files Browse the repository at this point in the history
  • Loading branch information
murarth committed Nov 24, 2014
1 parent c637cab commit a95c71e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/libsyntax/ext/expand.rs
Expand Up @@ -412,12 +412,19 @@ pub fn expand_item(it: P<ast::Item>, fld: &mut MacroExpander)
let mut new_items = match it.node {
ast::ItemMac(..) => expand_item_mac(it, fld),
ast::ItemMod(_) | ast::ItemForeignMod(_) => {
fld.cx.mod_push(it.ident);
let valid_ident =
it.ident.name != parse::token::special_idents::invalid.name;

if valid_ident {
fld.cx.mod_push(it.ident);
}
let macro_escape = contains_macro_escape(new_attrs.as_slice());
let result = with_exts_frame!(fld.cx.syntax_env,
macro_escape,
noop_fold_item(it, fld));
fld.cx.mod_pop();
if valid_ident {
fld.cx.mod_pop();
}
result
},
_ => {
Expand Down

0 comments on commit a95c71e

Please sign in to comment.