diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-07-09 16:01:07 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-07-09 16:29:25 -0700 |
| commit | 2c0aa257e293dde91042a8045100d9923d139a04 (patch) | |
| tree | 995daa19d33e0ea82b4bf5930d0abd96e033c224 /src/libsyntax/parse/parser.rs | |
| parent | 2edc4195d5b919e0c4d96996b63d661fca9dfb35 (diff) | |
| download | rust-2c0aa257e293dde91042a8045100d9923d139a04.tar.gz rust-2c0aa257e293dde91042a8045100d9923d139a04.zip | |
rustc: Switch over to resolve3
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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, |
