Refactored ast_map and friends, mainly to have Paths without storing them.

This commit is contained in:
Eduard Burtescu
2014-02-14 07:07:09 +02:00
parent 22c34f3c4c
commit a02b10a062
92 changed files with 1987 additions and 2573 deletions

View File

@@ -440,8 +440,7 @@ pub fn get_single_str_from_tts(cx: &ExtCtxt,
match tts[0] {
ast::TTTok(_, token::LIT_STR(ident))
| ast::TTTok(_, token::LIT_STR_RAW(ident, _)) => {
let interned_str = token::get_ident(ident.name);
return Some(interned_str.get().to_str())
return Some(token::get_ident(ident).get().to_str())
}
_ => cx.span_err(sp, format!("{} requires a string.", name)),
}