diff options
| author | bors <bors@rust-lang.org> | 2013-06-25 18:02:02 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-06-25 18:02:02 -0700 |
| commit | e9ac7194ff31792e2eca2c745fbef309a2daba86 (patch) | |
| tree | 879558b9ab5aad3f51922884e1f41f8b424b375e /src/libsyntax/parse/lexer.rs | |
| parent | efd1438770ae371406327304cb6ad4501db256ae (diff) | |
| parent | a616531ebbfa4403c024bcb895818980c33687e0 (diff) | |
| download | rust-e9ac7194ff31792e2eca2c745fbef309a2daba86.tar.gz rust-e9ac7194ff31792e2eca2c745fbef309a2daba86.zip | |
auto merge of #7365 : cmr/rust/syntax_cleanup, r=Aatch
Sets the stage for further cleanup (especially mass-slaughter of `@`)
Diffstat (limited to 'src/libsyntax/parse/lexer.rs')
| -rw-r--r-- | src/libsyntax/parse/lexer.rs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/libsyntax/parse/lexer.rs b/src/libsyntax/parse/lexer.rs index 84915b6403a..2092f0fa5fa 100644 --- a/src/libsyntax/parse/lexer.rs +++ b/src/libsyntax/parse/lexer.rs @@ -8,8 +8,6 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -use core::prelude::*; - use ast; use codemap::{BytePos, CharPos, CodeMap, Pos, span}; use codemap; @@ -19,9 +17,9 @@ use ext::tt::transcribe::{dup_tt_reader}; use parse::token; use parse::token::{str_to_ident}; -use core::char; -use core::either; -use core::u64; +use std::char; +use std::either; +use std::u64; pub use ext::tt::transcribe::{TtReader, new_tt_reader}; @@ -789,7 +787,6 @@ mod test { use ast; use codemap::{BytePos, CodeMap, span}; - use core::option::None; use diagnostic; use parse::token; use parse::token::{str_to_ident}; |
