Skip to content

Commit e29d253

Browse files
committed
remove dead code
1 parent b9bb4ab commit e29d253

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/libsyntax/ext/expand.rs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1501,21 +1501,6 @@ pub fn new_rename_folder(from : ast::Ident, to : ast::Name) -> @AstFoldFns {
15011501
fun_to_ctxt_folder(@Renamer{from:from,to:to})
15021502
}
15031503

1504-
/*
1505-
// perform resolution (in the MTWT sense) on all of the
1506-
// idents in the tree. This is the final step in expansion.
1507-
// FIXME #6993: this function could go away, along with
1508-
// the separate mtwt_resolution pass
1509-
pub fn new_ident_resolver() ->
1510-
@fn(ast::Ident)->ast::Ident {
1511-
|id : ast::Ident|
1512-
ast::Ident {
1513-
name : mtwt_resolve(id),
1514-
ctxt : EMPTY_CTXT
1515-
}
1516-
}
1517-
*/
1518-
15191504
// apply a given mark to the given token trees. Used prior to expansion of a macro.
15201505
fn mark_tts(tts : &[token_tree], m : Mrk) -> ~[token_tree] {
15211506
fold_tts(tts,new_mark_folder(m) as @ast_fold)

0 commit comments

Comments
 (0)