about summary refs log tree commit diff
path: root/src/comp/syntax/parse
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-09-01 16:09:15 -0700
committerBrian Anderson <banderson@mozilla.com>2011-09-01 16:09:15 -0700
commite824775d5332b160c7623c60f2e04372e83f26aa (patch)
treef4fbf98de07957d4761595b00828a5207e0e40bd /src/comp/syntax/parse
parent1b15c9e1553825e23915e4f6532669064543389d (diff)
downloadrust-e824775d5332b160c7623c60f2e04372e83f26aa.tar.gz
rust-e824775d5332b160c7623c60f2e04372e83f26aa.zip
Remove std::str. Issue #855
Diffstat (limited to 'src/comp/syntax/parse')
-rw-r--r--src/comp/syntax/parse/eval.rs1
-rw-r--r--src/comp/syntax/parse/lexer.rs1
-rw-r--r--src/comp/syntax/parse/parser.rs1
-rw-r--r--src/comp/syntax/parse/token.rs1
4 files changed, 0 insertions, 4 deletions
diff --git a/src/comp/syntax/parse/eval.rs b/src/comp/syntax/parse/eval.rs
index 1a4b3c9c29f..6318c4c769b 100644
--- a/src/comp/syntax/parse/eval.rs
+++ b/src/comp/syntax/parse/eval.rs
@@ -1,5 +1,4 @@
 
-import std::str;
 import std::istr;
 import std::option;
 import std::option::some;
diff --git a/src/comp/syntax/parse/lexer.rs b/src/comp/syntax/parse/lexer.rs
index fa147faa1cc..37eddf59abe 100644
--- a/src/comp/syntax/parse/lexer.rs
+++ b/src/comp/syntax/parse/lexer.rs
@@ -2,7 +2,6 @@
 import std::io;
 import std::int;
 import std::vec;
-import std::str;
 import std::istr;
 import std::map;
 import std::map::hashmap;
diff --git a/src/comp/syntax/parse/parser.rs b/src/comp/syntax/parse/parser.rs
index 9c61f569e21..cf3c02cb03a 100644
--- a/src/comp/syntax/parse/parser.rs
+++ b/src/comp/syntax/parse/parser.rs
@@ -1,7 +1,6 @@
 
 import std::io;
 import std::vec;
-import std::str;
 import std::istr;
 import std::option;
 import std::option::some;
diff --git a/src/comp/syntax/parse/token.rs b/src/comp/syntax/parse/token.rs
index b83a2f27e31..6ae2affdb04 100644
--- a/src/comp/syntax/parse/token.rs
+++ b/src/comp/syntax/parse/token.rs
@@ -5,7 +5,6 @@ import std::map::new_str_hash;
 import util::interner;
 import std::int;
 import std::uint;
-import std::str;
 import std::istr;
 
 type str_num = uint;