aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front/parser.rs
diff options
context:
space:
mode:
authorBrian Anderson <[email protected]>2011-02-22 18:58:07 -0500
committerBrian Anderson <[email protected]>2011-02-22 21:52:23 -0500
commitc4df39609c9c09c450dd8fe5905a8e6fbeb5f181 (patch)
tree1dc8fb985c2b6e406df0c2a1f9ff15963b8c87fc /src/comp/front/parser.rs
parentrustc: Perform explicit type substitution as requested by the programmer (diff)
downloadrust-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/parser.rs')
-rw-r--r--src/comp/front/parser.rs4
1 files changed, 2 insertions, 2 deletions
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),