From 1d214b4df3013a53e50d778fa921ed99bc498d02 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Wed, 3 Nov 2010 17:10:37 -0700 Subject: Move the option type to its own module --- src/comp/front/ast.rs | 1 - src/comp/front/parser.rs | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) (limited to 'src/comp/front') diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index e635c119..5511a068 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -1,5 +1,4 @@ -import util.common.option; import std.map.hashmap; import std.util.option; import util.common.span; 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; -- cgit v1.2.3