about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2012-07-09 16:01:07 -0700
committerPatrick Walton <pcwalton@mimiga.net>2012-07-09 17:44:16 -0700
commit7d90edcb3b292baaf406d4e6969987d466fc8fba (patch)
tree74f31f55cc8de4cb1e66195879b5345f797bdd00 /src/libsyntax/parse
parent6912b11089ba00b550630fd07bf6f2575f3070f5 (diff)
downloadrust-7d90edcb3b292baaf406d4e6969987d466fc8fba.tar.gz
rust-7d90edcb3b292baaf406d4e6969987d466fc8fba.zip
rustc: Switch over to resolve3
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/comments.rs4
-rw-r--r--src/libsyntax/parse/common.rs1
-rw-r--r--src/libsyntax/parse/parser.rs2
3 files changed, 4 insertions, 3 deletions
diff --git a/src/libsyntax/parse/comments.rs b/src/libsyntax/parse/comments.rs
index d351d492fb0..31069225c03 100644
--- a/src/libsyntax/parse/comments.rs
+++ b/src/libsyntax/parse/comments.rs
@@ -1,8 +1,8 @@
 import io::reader_util;
 import io::println;//XXXXXXXXxxx
 import util::interner;
-import lexer::{ string_reader, bump, is_eof, nextch,
-               is_whitespace, get_str_from, string_reader_as_reader };
+import lexer::{string_reader, bump, is_eof, nextch,
+               is_whitespace, get_str_from, string_reader_as_reader, reader};
 
 export cmnt;
 export lit;
diff --git a/src/libsyntax/parse/common.rs b/src/libsyntax/parse/common.rs
index 16059b473bb..6f11f18540a 100644
--- a/src/libsyntax/parse/common.rs
+++ b/src/libsyntax/parse/common.rs
@@ -1,6 +1,7 @@
 import std::map::{hashmap};
 import ast_util::spanned;
 import parser::parser;
+import lexer::reader;
 
 type seq_sep = {
     sep: option<token::token>,
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index 7d36216aa9b..882957ade5b 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -5,7 +5,7 @@ import token::{can_begin_expr, is_ident, is_plain_ident, ACTUALLY};
 import codemap::{span,fss_none};
 import util::interner;
 import ast_util::{spanned, respan, mk_sp, ident_to_path, operator_prec};
-import lexer::reader;
+import lexer::{reader, tt_reader_as_reader};
 import prec::{as_prec, token_to_binop};
 import attr::parser_attr;
 import common::{seq_sep_trailing_disallowed, seq_sep_trailing_allowed,