diff options
| author | Patrick Walton <[email protected]> | 2010-11-03 17:10:37 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2010-11-05 10:23:22 -0700 |
| commit | 1d214b4df3013a53e50d778fa921ed99bc498d02 (patch) | |
| tree | c87006304b72bd7fec9962afac5370de4e2d57bd /src/comp/front/parser.rs | |
| parent | Fix buggy while and do-while translation in rustc. Add test. (diff) | |
| download | rust-1d214b4df3013a53e50d778fa921ed99bc498d02.tar.xz rust-1d214b4df3013a53e50d778fa921ed99bc498d02.zip | |
Move the option type to its own module
Diffstat (limited to 'src/comp/front/parser.rs')
| -rw-r--r-- | src/comp/front/parser.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/comp/front/parser.rs b/src/comp/front/parser.rs index d42f7b45..e3066436 100644 --- a/src/comp/front/parser.rs +++ b/src/comp/front/parser.rs @@ -1,8 +1,8 @@ import std._io; -import std.util.option; -import std.util.some; -import std.util.none; +import std.option.some; +import std.option.none; import std.map.hashmap; +import std.util.option; import driver.session; import util.common; |