diff options
| author | Eduard Burtescu <edy.burt@gmail.com> | 2014-02-14 07:07:09 +0200 |
|---|---|---|
| committer | Eduard Burtescu <edy.burt@gmail.com> | 2014-02-14 08:43:29 +0200 |
| commit | a02b10a0621adfe36eb3cc2e46f45fc7ccdb7ea2 (patch) | |
| tree | 86fe8ac57360a232b07c4303547194646129561a /src/librustc/driver/session.rs | |
| parent | 22c34f3c4cddea33b916eb92f8d7286b02b865a7 (diff) | |
| download | rust-a02b10a0621adfe36eb3cc2e46f45fc7ccdb7ea2.tar.gz rust-a02b10a0621adfe36eb3cc2e46f45fc7ccdb7ea2.zip | |
Refactored ast_map and friends, mainly to have Paths without storing them.
Diffstat (limited to 'src/librustc/driver/session.rs')
| -rw-r--r-- | src/librustc/driver/session.rs | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/src/librustc/driver/session.rs b/src/librustc/driver/session.rs index 336d9f55d37..aff89974ca6 100644 --- a/src/librustc/driver/session.rs +++ b/src/librustc/driver/session.rs @@ -22,9 +22,7 @@ use syntax::ast::{IntTy, UintTy}; use syntax::codemap::Span; use syntax::diagnostic; use syntax::parse::ParseSess; -use syntax::{ast, codemap}; -use syntax::abi; -use syntax::parse::token; +use syntax::{abi, ast, codemap}; use syntax; use std::cell::{Cell, RefCell}; @@ -301,23 +299,6 @@ impl Session_ { pub fn show_span(&self) -> bool { self.debugging_opt(SHOW_SPAN) } - - // DEPRECATED. This function results in a lot of allocations when they - // are not necessary. - pub fn str_of(&self, id: ast::Ident) -> ~str { - let string = token::get_ident(id.name); - string.get().to_str() - } - - // pointless function, now... - pub fn ident_of(&self, st: &str) -> ast::Ident { - token::str_to_ident(st) - } - - // pointless function, now... - pub fn intr(&self) -> @syntax::parse::token::IdentInterner { - token::get_ident_interner() - } } /// Some reasonable defaults |
