diff options
| author | Brian Anderson <[email protected]> | 2011-02-22 18:58:07 -0500 |
|---|---|---|
| committer | Brian Anderson <[email protected]> | 2011-02-22 21:52:23 -0500 |
| commit | c4df39609c9c09c450dd8fe5905a8e6fbeb5f181 (patch) | |
| tree | 1dc8fb985c2b6e406df0c2a1f9ff15963b8c87fc /src/comp/front | |
| parent | rustc: Perform explicit type substitution as requested by the programmer (diff) | |
| download | rust-c4df39609c9c09c450dd8fe5905a8e6fbeb5f181.tar.xz rust-c4df39609c9c09c450dd8fe5905a8e6fbeb5f181.zip | |
Rename std._io to std.io since 'io' is no longer a keyword
Diffstat (limited to 'src/comp/front')
| -rw-r--r-- | src/comp/front/lexer.rs | 2 | ||||
| -rw-r--r-- | src/comp/front/parser.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/comp/front/lexer.rs b/src/comp/front/lexer.rs index a45b1113..481fc5dd 100644 --- a/src/comp/front/lexer.rs +++ b/src/comp/front/lexer.rs @@ -1,4 +1,4 @@ -import std._io.stdio_reader; +import std.io.stdio_reader; import std._str; import std.map; import std.map.hashmap; diff --git a/src/comp/front/parser.rs b/src/comp/front/parser.rs index 71b06b45..bbac78d3 100644 --- a/src/comp/front/parser.rs +++ b/src/comp/front/parser.rs @@ -1,4 +1,4 @@ -import std._io; +import std.io; import std._vec; import std._str; import std.option; @@ -80,7 +80,7 @@ impure fn new_parser(session.session sess, ret tup(crate, def); } } - auto srdr = _io.new_stdio_reader(path); + auto srdr = io.new_stdio_reader(path); auto rdr = lexer.new_reader(srdr, path); auto npos = rdr.get_curr_pos(); ret stdio_parser(sess, lexer.next_token(rdr), |