diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-09-01 16:09:15 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-09-01 16:09:15 -0700 |
| commit | e824775d5332b160c7623c60f2e04372e83f26aa (patch) | |
| tree | f4fbf98de07957d4761595b00828a5207e0e40bd /src/comp/syntax | |
| parent | 1b15c9e1553825e23915e4f6532669064543389d (diff) | |
| download | rust-e824775d5332b160c7623c60f2e04372e83f26aa.tar.gz rust-e824775d5332b160c7623c60f2e04372e83f26aa.zip | |
Remove std::str. Issue #855
Diffstat (limited to 'src/comp/syntax')
| -rw-r--r-- | src/comp/syntax/ast.rs | 1 | ||||
| -rw-r--r-- | src/comp/syntax/ast_util.rs | 1 | ||||
| -rw-r--r-- | src/comp/syntax/codemap.rs | 1 | ||||
| -rw-r--r-- | src/comp/syntax/ext/ifmt.rs | 1 | ||||
| -rw-r--r-- | src/comp/syntax/parse/eval.rs | 1 | ||||
| -rw-r--r-- | src/comp/syntax/parse/lexer.rs | 1 | ||||
| -rw-r--r-- | src/comp/syntax/parse/parser.rs | 1 | ||||
| -rw-r--r-- | src/comp/syntax/parse/token.rs | 1 | ||||
| -rw-r--r-- | src/comp/syntax/print/pp.rs | 1 | ||||
| -rw-r--r-- | src/comp/syntax/print/pprust.rs | 1 |
10 files changed, 0 insertions, 10 deletions
diff --git a/src/comp/syntax/ast.rs b/src/comp/syntax/ast.rs index 582da17f465..f6a34e5c544 100644 --- a/src/comp/syntax/ast.rs +++ b/src/comp/syntax/ast.rs @@ -1,7 +1,6 @@ // The Rust abstract syntax tree. import std::option; -import std::str; import codemap::span; import codemap::filename; diff --git a/src/comp/syntax/ast_util.rs b/src/comp/syntax/ast_util.rs index 1052ef195fa..5481229a762 100644 --- a/src/comp/syntax/ast_util.rs +++ b/src/comp/syntax/ast_util.rs @@ -1,4 +1,3 @@ -import std::str; import std::istr; import std::option; import codemap::span; diff --git a/src/comp/syntax/codemap.rs b/src/comp/syntax/codemap.rs index 9c9a0049cf1..14dc3e46448 100644 --- a/src/comp/syntax/codemap.rs +++ b/src/comp/syntax/codemap.rs @@ -1,6 +1,5 @@ import std::vec; import std::uint; -import std::str; import std::istr; import std::term; import std::io; diff --git a/src/comp/syntax/ext/ifmt.rs b/src/comp/syntax/ext/ifmt.rs index 4fcb1db8816..b48d73d0fc5 100644 --- a/src/comp/syntax/ext/ifmt.rs +++ b/src/comp/syntax/ext/ifmt.rs @@ -6,7 +6,6 @@ * compiler syntax extension plugin interface. */ import std::vec; -import std::str; import std::istr; import std::option; import std::option::none; 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; diff --git a/src/comp/syntax/print/pp.rs b/src/comp/syntax/print/pp.rs index 59460a07e06..ae94fb959b5 100644 --- a/src/comp/syntax/print/pp.rs +++ b/src/comp/syntax/print/pp.rs @@ -1,7 +1,6 @@ import std::io; import std::vec; -import std::str; import std::istr; /* diff --git a/src/comp/syntax/print/pprust.rs b/src/comp/syntax/print/pprust.rs index c01ede9d391..fa6891a0812 100644 --- a/src/comp/syntax/print/pprust.rs +++ b/src/comp/syntax/print/pprust.rs @@ -2,7 +2,6 @@ import std::vec; import std::int; import std::io; -import std::str; import std::istr; import std::uint; import std::option; |
