From 875c9ce30b13de02e447ee95cb50b0111894b14a Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Fri, 31 Jan 2014 15:26:59 -0800 Subject: libsyntax: Remove many uses of `token::ident_to_str` --- src/libsyntax/parse/parser.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/libsyntax/parse/parser.rs') diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index cdf5d440380..34080ffb624 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -72,9 +72,8 @@ use parse::lexer::Reader; use parse::lexer::TokenAndSpan; use parse::obsolete::*; use parse::token::{INTERPOLATED, InternedString, can_begin_expr, get_ident}; -use parse::token::{get_ident_interner, ident_to_str, is_ident}; -use parse::token::{is_ident_or_path, is_plain_ident, keywords}; -use parse::token::{special_idents, token_to_binop}; +use parse::token::{get_ident_interner, is_ident, is_ident_or_path}; +use parse::token::{is_plain_ident, keywords, special_idents, token_to_binop}; use parse::token; use parse::{new_sub_parser_from_file, ParseSess}; use opt_vec; @@ -4534,7 +4533,8 @@ impl Parser { token::LIT_STR(s) | token::LIT_STR_RAW(s, _) => { self.bump(); - let the_string = ident_to_str(&s); + let identifier_string = token::get_ident(s.name); + let the_string = identifier_string.get(); let mut abis = AbiSet::empty(); for word in the_string.words() { match abi::lookup(word) { -- cgit 1.4.1-3-g733a5