lib.rs 196.8 KB
Newer Older
1
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2 3 4 5 6 7 8 9 10
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

11
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
12 13
       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
       html_root_url = "https://doc.rust-lang.org/nightly/")]
14

15
#![feature(crate_visibility_modifier)]
16
#![cfg_attr(not(stage0), feature(nll))]
A
Alex Crichton 已提交
17
#![feature(rustc_diagnostic_macros)]
18
#![feature(slice_sort_by_cached_key)]
19

C
corentih 已提交
20 21 22 23
#[macro_use]
extern crate log;
#[macro_use]
extern crate syntax;
24 25
extern crate syntax_pos;
extern crate rustc_errors as errors;
26
extern crate arena;
C
corentih 已提交
27
#[macro_use]
28
extern crate rustc;
29
extern crate rustc_data_structures;
30
extern crate rustc_metadata;
31

32 33
pub use rustc::hir::def::{Namespace, PerNS};

S
Steven Fackler 已提交
34 35 36
use self::TypeParameters::*;
use self::RibKind::*;

37
use rustc::hir::map::{Definitions, DefCollector};
38
use rustc::hir::{self, PrimTy, Bool, Char, Float, Int, Uint, Str};
39
use rustc::middle::cstore::CrateStore;
40 41
use rustc::session::Session;
use rustc::lint;
42
use rustc::hir::def::*;
43
use rustc::hir::def::Namespace::*;
44
use rustc::hir::def_id::{CRATE_DEF_INDEX, LOCAL_CRATE, DefId};
45
use rustc::ty;
S
Seo Sanghyeon 已提交
46
use rustc::hir::{Freevar, FreevarMap, TraitCandidate, TraitMap, GlobMap};
47
use rustc::util::nodemap::{NodeMap, NodeSet, FxHashMap, FxHashSet, DefIdMap};
48

49 50 51
use rustc_metadata::creader::CrateLoader;
use rustc_metadata::cstore::CStore;

D
Donato Sciarra 已提交
52
use syntax::source_map::SourceMap;
53
use syntax::ext::hygiene::{Mark, Transparency, SyntaxContext};
V
Vadim Petrochenkov 已提交
54
use syntax::ast::{self, Name, NodeId, Ident, FloatTy, IntTy, UintTy};
J
Jeffrey Seyfried 已提交
55
use syntax::ext::base::SyntaxExtension;
J
Jeffrey Seyfried 已提交
56
use syntax::ext::base::Determinacy::{self, Determined, Undetermined};
57
use syntax::ext::base::MacroKind;
58
use syntax::symbol::{Symbol, keywords};
59
use syntax::util::lev_distance::find_best_match_for_name;
60

61
use syntax::visit::{self, FnKind, Visitor};
62
use syntax::attr;
63
use syntax::ast::{CRATE_NODE_ID, Arm, IsAsync, BindingMode, Block, Crate, Expr, ExprKind};
V
varkor 已提交
64
use syntax::ast::{FnDecl, ForeignItem, ForeignItemKind, GenericParamKind, Generics};
65
use syntax::ast::{Item, ItemKind, ImplItem, ImplItemKind};
66
use syntax::ast::{Label, Local, Mutability, Pat, PatKind, Path};
J
Jeffrey Seyfried 已提交
67
use syntax::ast::{QSelf, TraitItemKind, TraitRef, Ty, TyKind};
M
Mark Mansi 已提交
68
use syntax::feature_gate::{feature_err, GateIssue};
69
use syntax::ptr::P;
70

71
use syntax_pos::{Span, DUMMY_SP, MultiSpan};
72
use errors::{DiagnosticBuilder, DiagnosticId};
73

74
use std::cell::{Cell, RefCell};
75
use std::cmp;
76
use std::collections::BTreeSet;
77
use std::fmt;
M
Manish Goregaokar 已提交
78
use std::iter;
79
use std::mem::replace;
80
use rustc_data_structures::sync::Lrc;
81

82
use resolve_imports::{ImportDirective, ImportDirectiveSubclass, NameResolution, ImportResolver};
83
use macros::{InvocationData, LegacyBinding};
84

85 86
// NB: This module needs to be declared first so diagnostics are
// registered before they are used.
J
Jeffrey Seyfried 已提交
87
mod diagnostics;
88

89
mod macros;
A
Alex Crichton 已提交
90
mod check_unused;
91
mod build_reduced_graph;
92
mod resolve_imports;
93

94 95 96 97
fn is_known_tool(name: Name) -> bool {
    ["clippy", "rustfmt"].contains(&&*name.as_str())
}

98 99 100
/// A free importable items suggested in case of resolution failure.
struct ImportSuggestion {
    path: Path,
101 102
}

103 104 105 106 107
/// A field or associated item from self type suggested in case of resolution failure.
enum AssocSuggestion {
    Field,
    MethodWithSelf,
    AssocItem,
108 109
}

110 111 112
#[derive(Eq)]
struct BindingError {
    name: Name,
113 114
    origin: BTreeSet<Span>,
    target: BTreeSet<Span>,
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
}

impl PartialOrd for BindingError {
    fn partial_cmp(&self, other: &BindingError) -> Option<cmp::Ordering> {
        Some(self.cmp(other))
    }
}

impl PartialEq for BindingError {
    fn eq(&self, other: &BindingError) -> bool {
        self.name == other.name
    }
}

impl Ord for BindingError {
    fn cmp(&self, other: &BindingError) -> cmp::Ordering {
        self.name.cmp(&other.name)
    }
}

J
Jeffrey Seyfried 已提交
135
enum ResolutionError<'a> {
136
    /// error E0401: can't use type parameters from outer function
137
    TypeParametersFromOuterFunction(Def),
138
    /// error E0403: the name is already used for a type parameter in this type parameter list
C
Chris Stankus 已提交
139
    NameAlreadyUsedInTypeParameterList(Name, &'a Span),
140
    /// error E0407: method is not a member of trait
141
    MethodNotMemberOfTrait(Name, &'a str),
142 143 144 145
    /// error E0437: type is not a member of trait
    TypeNotMemberOfTrait(Name, &'a str),
    /// error E0438: const is not a member of trait
    ConstNotMemberOfTrait(Name, &'a str),
146 147 148 149
    /// error E0408: variable `{}` is not bound in all patterns
    VariableNotBoundInPattern(&'a BindingError),
    /// error E0409: variable `{}` is bound in inconsistent ways within the same match arm
    VariableBoundWithDifferentMode(Name, Span),
150
    /// error E0415: identifier is bound more than once in this parameter list
151
    IdentifierBoundMoreThanOnceInParameterList(&'a str),
152
    /// error E0416: identifier is bound more than once in the same pattern
153
    IdentifierBoundMoreThanOnceInSamePattern(&'a str),
154
    /// error E0426: use of undeclared label
155
    UndeclaredLabel(&'a str, Option<Name>),
156
    /// error E0429: `self` imports are only allowed within a { } list
157
    SelfImportsOnlyAllowedWithin,
158
    /// error E0430: `self` import can only appear once in the list
159
    SelfImportCanOnlyAppearOnceInTheList,
160
    /// error E0431: `self` import can only appear in an import list with a non-empty prefix
161
    SelfImportOnlyInImportListWithNonEmptyPrefix,
162
    /// error E0432: unresolved import
163
    UnresolvedImport(Option<(Span, &'a str, &'a str)>),
164
    /// error E0433: failed to resolve
165
    FailedToResolve(&'a str),
166
    /// error E0434: can't capture dynamic environment in a fn item
167
    CannotCaptureDynamicEnvironmentInFnItem,
168
    /// error E0435: attempt to use a non-constant value in a constant
169
    AttemptToUseNonConstantValueInConstant,
170
    /// error E0530: X bindings cannot shadow Ys
171
    BindingShadowsSomethingUnacceptable(&'a str, Name, &'a NameBinding<'a>),
172 173
    /// error E0128: type parameters with a default cannot use forward declared identifiers
    ForwardDeclaredTyParam,
174 175
}

176 177 178 179
/// Combines an error with provided span and emits it
///
/// This takes the error provided, combines it with the span and any additional spans inside the
/// error and emits it.
180 181 182
fn resolve_error<'sess, 'a>(resolver: &'sess Resolver,
                            span: Span,
                            resolution_error: ResolutionError<'a>) {
N
Nick Cameron 已提交
183
    resolve_struct_error(resolver, span, resolution_error).emit();
N
Nick Cameron 已提交
184 185
}

186 187 188 189
fn resolve_struct_error<'sess, 'a>(resolver: &'sess Resolver,
                                   span: Span,
                                   resolution_error: ResolutionError<'a>)
                                   -> DiagnosticBuilder<'sess> {
N
Nick Cameron 已提交
190
    match resolution_error {
191
        ResolutionError::TypeParametersFromOuterFunction(outer_def) => {
192 193 194
            let mut err = struct_span_err!(resolver.session,
                                           span,
                                           E0401,
195
                                           "can't use type parameters from outer function");
196
            err.span_label(span, "use of type variable from outer function");
197

D
Donato Sciarra 已提交
198
            let cm = resolver.session.source_map();
199 200 201 202 203
            match outer_def {
                Def::SelfTy(_, maybe_impl_defid) => {
                    if let Some(impl_span) = maybe_impl_defid.map_or(None,
                            |def_id| resolver.definitions.opt_span(def_id)) {
                        err.span_label(reduce_impl_span_to_impl_keyword(cm, impl_span),
M
Matthias Krüger 已提交
204
                                    "`Self` type implicitly declared here, on the `impl`");
205 206
                    }
                },
207
                Def::TyParam(typaram_defid) => {
208 209 210 211
                    if let Some(typaram_span) = resolver.definitions.opt_span(typaram_defid) {
                        err.span_label(typaram_span, "type variable from outer function");
                    }
                },
212
                _ => {
213
                    bug!("TypeParametersFromOuterFunction should only be used with Def::SelfTy or \
214
                         Def::TyParam")
215
                }
216 217 218 219 220
            }

            // Try to retrieve the span of the function signature and generate a new message with
            // a local type parameter
            let sugg_msg = "try using a local type parameter instead";
221
            if let Some((sugg_span, new_snippet)) = cm.generate_local_type_param_snippet(span) {
222 223 224 225
                // Suggest the modification to the user
                err.span_suggestion(sugg_span,
                                    sugg_msg,
                                    new_snippet);
226
            } else if let Some(sp) = cm.generate_fn_name_span(span) {
227
                err.span_label(sp, "try adding a local type parameter in this method instead");
228 229 230 231
            } else {
                err.help("try using a local type parameter instead");
            }

232
            err
C
corentih 已提交
233
        }
C
Chris Stankus 已提交
234 235 236 237 238 239 240
        ResolutionError::NameAlreadyUsedInTypeParameterList(name, first_use_span) => {
             let mut err = struct_span_err!(resolver.session,
                                            span,
                                            E0403,
                                            "the name `{}` is already used for a type parameter \
                                            in this type parameter list",
                                            name);
241 242
             err.span_label(span, "already used");
             err.span_label(first_use_span.clone(), format!("first use of `{}`", name));
C
Chris Stankus 已提交
243
             err
C
corentih 已提交
244
        }
245
        ResolutionError::MethodNotMemberOfTrait(method, trait_) => {
C
crypto-universe 已提交
246 247 248 249 250 251
            let mut err = struct_span_err!(resolver.session,
                                           span,
                                           E0407,
                                           "method `{}` is not a member of trait `{}`",
                                           method,
                                           trait_);
252
            err.span_label(span, format!("not a member of trait `{}`", trait_));
C
crypto-universe 已提交
253
            err
C
corentih 已提交
254
        }
255
        ResolutionError::TypeNotMemberOfTrait(type_, trait_) => {
S
Shyam Sundar B 已提交
256
            let mut err = struct_span_err!(resolver.session,
N
Nick Cameron 已提交
257 258 259 260
                             span,
                             E0437,
                             "type `{}` is not a member of trait `{}`",
                             type_,
S
Shyam Sundar B 已提交
261
                             trait_);
262
            err.span_label(span, format!("not a member of trait `{}`", trait_));
S
Shyam Sundar B 已提交
263
            err
C
corentih 已提交
264
        }
265
        ResolutionError::ConstNotMemberOfTrait(const_, trait_) => {
S
Shyam Sundar B 已提交
266
            let mut err = struct_span_err!(resolver.session,
N
Nick Cameron 已提交
267 268 269 270
                             span,
                             E0438,
                             "const `{}` is not a member of trait `{}`",
                             const_,
S
Shyam Sundar B 已提交
271
                             trait_);
272
            err.span_label(span, format!("not a member of trait `{}`", trait_));
S
Shyam Sundar B 已提交
273
            err
C
corentih 已提交
274
        }
275
        ResolutionError::VariableNotBoundInPattern(binding_error) => {
S
Shotaro Yamada 已提交
276
            let target_sp = binding_error.target.iter().cloned().collect::<Vec<_>>();
277 278
            let msp = MultiSpan::from_spans(target_sp.clone());
            let msg = format!("variable `{}` is not bound in all patterns", binding_error.name);
279 280 281 282 283
            let mut err = resolver.session.struct_span_err_with_code(
                msp,
                &msg,
                DiagnosticId::Error("E0408".into()),
            );
284
            for sp in target_sp {
285
                err.span_label(sp, format!("pattern doesn't bind `{}`", binding_error.name));
286
            }
S
Shotaro Yamada 已提交
287
            let origin_sp = binding_error.origin.iter().cloned();
288
            for sp in origin_sp {
289
                err.span_label(sp, "variable not in all patterns");
290
            }
291
            err
C
corentih 已提交
292
        }
M
Mikhail Modin 已提交
293 294 295
        ResolutionError::VariableBoundWithDifferentMode(variable_name,
                                                        first_binding_span) => {
            let mut err = struct_span_err!(resolver.session,
N
Nick Cameron 已提交
296 297
                             span,
                             E0409,
298 299 300
                             "variable `{}` is bound in inconsistent \
                             ways within the same match arm",
                             variable_name);
301 302
            err.span_label(span, "bound in different ways");
            err.span_label(first_binding_span, "first binding");
M
Mikhail Modin 已提交
303
            err
C
corentih 已提交
304
        }
305
        ResolutionError::IdentifierBoundMoreThanOnceInParameterList(identifier) => {
306
            let mut err = struct_span_err!(resolver.session,
N
Nick Cameron 已提交
307 308 309
                             span,
                             E0415,
                             "identifier `{}` is bound more than once in this parameter list",
310
                             identifier);
311
            err.span_label(span, "used as parameter more than once");
312
            err
C
corentih 已提交
313
        }
314
        ResolutionError::IdentifierBoundMoreThanOnceInSamePattern(identifier) => {
315
            let mut err = struct_span_err!(resolver.session,
N
Nick Cameron 已提交
316 317 318
                             span,
                             E0416,
                             "identifier `{}` is bound more than once in the same pattern",
319
                             identifier);
320
            err.span_label(span, "used in a pattern more than once");
321
            err
C
corentih 已提交
322
        }
323
        ResolutionError::UndeclaredLabel(name, lev_candidate) => {
C
crypto-universe 已提交
324 325 326 327 328
            let mut err = struct_span_err!(resolver.session,
                                           span,
                                           E0426,
                                           "use of undeclared label `{}`",
                                           name);
329 330 331 332 333
            if let Some(lev_candidate) = lev_candidate {
                err.span_label(span, format!("did you mean `{}`?", lev_candidate));
            } else {
                err.span_label(span, format!("undeclared label `{}`", name));
            }
C
crypto-universe 已提交
334
            err
C
corentih 已提交
335
        }
336
        ResolutionError::SelfImportsOnlyAllowedWithin => {
N
Nick Cameron 已提交
337 338 339 340 341
            struct_span_err!(resolver.session,
                             span,
                             E0429,
                             "{}",
                             "`self` imports are only allowed within a { } list")
C
corentih 已提交
342
        }
343
        ResolutionError::SelfImportCanOnlyAppearOnceInTheList => {
E
Esteban Küber 已提交
344 345 346 347
            let mut err = struct_span_err!(resolver.session, span, E0430,
                                           "`self` import can only appear once in an import list");
            err.span_label(span, "can only appear once in an import list");
            err
C
corentih 已提交
348
        }
349
        ResolutionError::SelfImportOnlyInImportListWithNonEmptyPrefix => {
E
Esteban Küber 已提交
350 351 352 353 354
            let mut err = struct_span_err!(resolver.session, span, E0431,
                                           "`self` import can only appear in an import list with \
                                            a non-empty prefix");
            err.span_label(span, "can only appear in an import list with a non-empty prefix");
            err
355
        }
356
        ResolutionError::UnresolvedImport(name) => {
357 358 359
            let (span, msg) = match name {
                Some((sp, n, _)) => (sp, format!("unresolved import `{}`", n)),
                None => (span, "unresolved import".to_owned()),
360
            };
K
Knight 已提交
361
            let mut err = struct_span_err!(resolver.session, span, E0432, "{}", msg);
362
            if let Some((_, _, p)) = name {
363
                err.span_label(span, p);
K
Knight 已提交
364 365
            }
            err
C
corentih 已提交
366
        }
367
        ResolutionError::FailedToResolve(msg) => {
J
Jonathan Turner 已提交
368 369
            let mut err = struct_span_err!(resolver.session, span, E0433,
                                           "failed to resolve. {}", msg);
370
            err.span_label(span, msg);
371
            err
C
corentih 已提交
372
        }
373
        ResolutionError::CannotCaptureDynamicEnvironmentInFnItem => {
E
Esteban Küber 已提交
374 375 376 377 378 379 380
            let mut err = struct_span_err!(resolver.session,
                                           span,
                                           E0434,
                                           "{}",
                                           "can't capture dynamic environment in a fn item");
            err.help("use the `|| { ... }` closure form instead");
            err
C
corentih 已提交
381 382
        }
        ResolutionError::AttemptToUseNonConstantValueInConstant => {
E
Esteban Küber 已提交
383 384
            let mut err = struct_span_err!(resolver.session, span, E0435,
                                           "attempt to use a non-constant value in a constant");
385
            err.span_label(span, "non-constant value");
S
Shyam Sundar B 已提交
386
            err
C
corentih 已提交
387
        }
388
        ResolutionError::BindingShadowsSomethingUnacceptable(what_binding, name, binding) => {
389
            let shadows_what = PathResolution::new(binding.def()).kind_name();
390 391
            let mut err = struct_span_err!(resolver.session,
                                           span,
392
                                           E0530,
393
                                           "{}s cannot shadow {}s", what_binding, shadows_what);
394
            err.span_label(span, format!("cannot be named the same as a {}", shadows_what));
395
            let participle = if binding.is_import() { "imported" } else { "defined" };
396
            let msg = format!("a {} `{}` is {} here", shadows_what, name, participle);
397
            err.span_label(binding.span, msg);
398 399
            err
        }
400 401 402 403
        ResolutionError::ForwardDeclaredTyParam => {
            let mut err = struct_span_err!(resolver.session, span, E0128,
                                           "type parameters with a default cannot use \
                                            forward declared identifiers");
L
ljedrz 已提交
404 405
            err.span_label(
                span, "defaulted type parameters cannot be forward declared".to_string());
406 407
            err
        }
N
Nick Cameron 已提交
408
    }
409 410
}

411 412 413 414 415 416
/// Adjust the impl span so that just the `impl` keyword is taken by removing
/// everything after `<` (`"impl<T> Iterator for A<T> {}" -> "impl"`) and
/// everything after the first whitespace (`"impl Iterator for A" -> "impl"`)
///
/// Attention: The method used is very fragile since it essentially duplicates the work of the
/// parser. If you need to use this function or something similar, please consider updating the
D
Donato Sciarra 已提交
417
/// source_map functions and this function to something more robust.
D
Donato Sciarra 已提交
418
fn reduce_impl_span_to_impl_keyword(cm: &SourceMap, impl_span: Span) -> Span {
419 420 421 422 423
    let impl_span = cm.span_until_char(impl_span, '<');
    let impl_span = cm.span_until_whitespace(impl_span);
    impl_span
}

424
#[derive(Copy, Clone, Debug)]
425
struct BindingInfo {
426
    span: Span,
427
    binding_mode: BindingMode,
428 429
}

430
/// Map from the name in a pattern to its binding mode.
431
type BindingMap = FxHashMap<Ident, BindingInfo>;
432

433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
enum PatternSource {
    Match,
    IfLet,
    WhileLet,
    Let,
    For,
    FnParam,
}

impl PatternSource {
    fn descr(self) -> &'static str {
        match self {
            PatternSource::Match => "match binding",
            PatternSource::IfLet => "if let binding",
            PatternSource::WhileLet => "while let binding",
            PatternSource::Let => "let binding",
            PatternSource::For => "for binding",
            PatternSource::FnParam => "function parameter",
        }
    }
454 455
}

A
Alex Burka 已提交
456 457 458 459 460 461
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
enum AliasPossibility {
    No,
    Maybe,
}

462
#[derive(Copy, Clone, Debug)]
463 464 465 466
enum PathSource<'a> {
    // Type paths `Path`.
    Type,
    // Trait paths in bounds or impls.
A
Alex Burka 已提交
467
    Trait(AliasPossibility),
468
    // Expression paths `path`, with optional parent context.
469
    Expr(Option<&'a Expr>),
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
    // Paths in path patterns `Path`.
    Pat,
    // Paths in struct expressions and patterns `Path { .. }`.
    Struct,
    // Paths in tuple struct patterns `Path(..)`.
    TupleStruct,
    // `m::A::B` in `<T as m::A>::B::C`.
    TraitItem(Namespace),
    // Path in `pub(path)`
    Visibility,
    // Path in `use a::b::{...};`
    ImportPrefix,
}

impl<'a> PathSource<'a> {
    fn namespace(self) -> Namespace {
        match self {
A
Alex Burka 已提交
487
            PathSource::Type | PathSource::Trait(_) | PathSource::Struct |
488 489 490 491 492 493 494 495 496 497 498
            PathSource::Visibility | PathSource::ImportPrefix => TypeNS,
            PathSource::Expr(..) | PathSource::Pat | PathSource::TupleStruct => ValueNS,
            PathSource::TraitItem(ns) => ns,
        }
    }

    fn global_by_default(self) -> bool {
        match self {
            PathSource::Visibility | PathSource::ImportPrefix => true,
            PathSource::Type | PathSource::Expr(..) | PathSource::Pat |
            PathSource::Struct | PathSource::TupleStruct |
A
Alex Burka 已提交
499
            PathSource::Trait(_) | PathSource::TraitItem(..) => false,
500 501 502 503 504 505 506
        }
    }

    fn defer_to_typeck(self) -> bool {
        match self {
            PathSource::Type | PathSource::Expr(..) | PathSource::Pat |
            PathSource::Struct | PathSource::TupleStruct => true,
A
Alex Burka 已提交
507
            PathSource::Trait(_) | PathSource::TraitItem(..) |
508 509 510 511 512 513 514
            PathSource::Visibility | PathSource::ImportPrefix => false,
        }
    }

    fn descr_expected(self) -> &'static str {
        match self {
            PathSource::Type => "type",
A
Alex Burka 已提交
515
            PathSource::Trait(_) => "trait",
516 517 518 519 520 521 522 523 524 525
            PathSource::Pat => "unit struct/variant or constant",
            PathSource::Struct => "struct, variant or union type",
            PathSource::TupleStruct => "tuple struct/variant",
            PathSource::Visibility => "module",
            PathSource::ImportPrefix => "module or enum",
            PathSource::TraitItem(ns) => match ns {
                TypeNS => "associated type",
                ValueNS => "method or associated constant",
                MacroNS => bug!("associated macro"),
            },
526
            PathSource::Expr(parent) => match parent.map(|p| &p.node) {
527 528 529 530 531 532 533 534 535 536 537 538 539
                // "function" here means "anything callable" rather than `Def::Fn`,
                // this is not precise but usually more helpful than just "value".
                Some(&ExprKind::Call(..)) => "function",
                _ => "value",
            },
        }
    }

    fn is_expected(self, def: Def) -> bool {
        match self {
            PathSource::Type => match def {
                Def::Struct(..) | Def::Union(..) | Def::Enum(..) |
                Def::Trait(..) | Def::TyAlias(..) | Def::AssociatedTy(..) |
540
                Def::PrimTy(..) | Def::TyParam(..) | Def::SelfTy(..) |
O
Oliver Schneider 已提交
541
                Def::Existential(..) |
V
varkor 已提交
542
                Def::ForeignTy(..) => true,
543 544
                _ => false,
            },
A
Alex Burka 已提交
545 546 547 548 549
            PathSource::Trait(AliasPossibility::No) => match def {
                Def::Trait(..) => true,
                _ => false,
            },
            PathSource::Trait(AliasPossibility::Maybe) => match def {
550
                Def::Trait(..) => true,
A
Alex Burka 已提交
551
                Def::TraitAlias(..) => true,
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
                _ => false,
            },
            PathSource::Expr(..) => match def {
                Def::StructCtor(_, CtorKind::Const) | Def::StructCtor(_, CtorKind::Fn) |
                Def::VariantCtor(_, CtorKind::Const) | Def::VariantCtor(_, CtorKind::Fn) |
                Def::Const(..) | Def::Static(..) | Def::Local(..) | Def::Upvar(..) |
                Def::Fn(..) | Def::Method(..) | Def::AssociatedConst(..) => true,
                _ => false,
            },
            PathSource::Pat => match def {
                Def::StructCtor(_, CtorKind::Const) |
                Def::VariantCtor(_, CtorKind::Const) |
                Def::Const(..) | Def::AssociatedConst(..) => true,
                _ => false,
            },
            PathSource::TupleStruct => match def {
                Def::StructCtor(_, CtorKind::Fn) | Def::VariantCtor(_, CtorKind::Fn) => true,
                _ => false,
            },
            PathSource::Struct => match def {
                Def::Struct(..) | Def::Union(..) | Def::Variant(..) |
                Def::TyAlias(..) | Def::AssociatedTy(..) | Def::SelfTy(..) => true,
                _ => false,
            },
            PathSource::TraitItem(ns) => match def {
                Def::AssociatedConst(..) | Def::Method(..) if ns == ValueNS => true,
                Def::AssociatedTy(..) if ns == TypeNS => true,
                _ => false,
            },
            PathSource::ImportPrefix => match def {
                Def::Mod(..) | Def::Enum(..) => true,
                _ => false,
            },
            PathSource::Visibility => match def {
                Def::Mod(..) => true,
                _ => false,
            },
        }
    }

    fn error_code(self, has_unexpected_resolution: bool) -> &'static str {
        __diagnostic_used!(E0404);
        __diagnostic_used!(E0405);
        __diagnostic_used!(E0412);
        __diagnostic_used!(E0422);
        __diagnostic_used!(E0423);
        __diagnostic_used!(E0425);
        __diagnostic_used!(E0531);
        __diagnostic_used!(E0532);
        __diagnostic_used!(E0573);
        __diagnostic_used!(E0574);
        __diagnostic_used!(E0575);
        __diagnostic_used!(E0576);
        __diagnostic_used!(E0577);
        __diagnostic_used!(E0578);
        match (self, has_unexpected_resolution) {
A
Alex Burka 已提交
608 609
            (PathSource::Trait(_), true) => "E0404",
            (PathSource::Trait(_), false) => "E0405",
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
            (PathSource::Type, true) => "E0573",
            (PathSource::Type, false) => "E0412",
            (PathSource::Struct, true) => "E0574",
            (PathSource::Struct, false) => "E0422",
            (PathSource::Expr(..), true) => "E0423",
            (PathSource::Expr(..), false) => "E0425",
            (PathSource::Pat, true) | (PathSource::TupleStruct, true) => "E0532",
            (PathSource::Pat, false) | (PathSource::TupleStruct, false) => "E0531",
            (PathSource::TraitItem(..), true) => "E0575",
            (PathSource::TraitItem(..), false) => "E0576",
            (PathSource::Visibility, true) | (PathSource::ImportPrefix, true) => "E0577",
            (PathSource::Visibility, false) | (PathSource::ImportPrefix, false) => "E0578",
        }
    }
}

626 627 628
struct UsePlacementFinder {
    target_module: NodeId,
    span: Option<Span>,
629
    found_use: bool,
630 631
}

632 633 634 635 636 637 638 639 640 641 642 643
impl UsePlacementFinder {
    fn check(krate: &Crate, target_module: NodeId) -> (Option<Span>, bool) {
        let mut finder = UsePlacementFinder {
            target_module,
            span: None,
            found_use: false,
        };
        visit::walk_crate(&mut finder, krate);
        (finder.span, finder.found_use)
    }
}

644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
impl<'tcx> Visitor<'tcx> for UsePlacementFinder {
    fn visit_mod(
        &mut self,
        module: &'tcx ast::Mod,
        _: Span,
        _: &[ast::Attribute],
        node_id: NodeId,
    ) {
        if self.span.is_some() {
            return;
        }
        if node_id != self.target_module {
            visit::walk_mod(self, module);
            return;
        }
        // find a use statement
        for item in &module.items {
            match item.node {
                ItemKind::Use(..) => {
                    // don't suggest placing a use before the prelude
                    // import or other generated ones
665
                    if item.span.ctxt().outer().expn_info().is_none() {
666
                        self.span = Some(item.span.shrink_to_lo());
667
                        self.found_use = true;
668 669 670 671 672 673 674
                        return;
                    }
                },
                // don't place use before extern crate
                ItemKind::ExternCrate(_) => {}
                // but place them before the first other item
                _ => if self.span.map_or(true, |span| item.span < span ) {
675 676 677
                    if item.span.ctxt().outer().expn_info().is_none() {
                        // don't insert between attributes and an item
                        if item.attrs.is_empty() {
678
                            self.span = Some(item.span.shrink_to_lo());
679 680 681 682
                        } else {
                            // find the first attribute on the item
                            for attr in &item.attrs {
                                if self.span.map_or(true, |span| attr.span < span) {
683
                                    self.span = Some(attr.span.shrink_to_lo());
684 685 686 687
                                }
                            }
                        }
                    }
688 689 690 691 692 693
                },
            }
        }
    }
}

694
/// This thing walks the whole crate in DFS manner, visiting each item, resolving names as it goes.
695
impl<'a, 'tcx, 'cl> Visitor<'tcx> for Resolver<'a, 'cl> {
696
    fn visit_item(&mut self, item: &'tcx Item) {
A
Alex Crichton 已提交
697
        self.resolve_item(item);
698
    }
699
    fn visit_arm(&mut self, arm: &'tcx Arm) {
A
Alex Crichton 已提交
700
        self.resolve_arm(arm);
701
    }
702
    fn visit_block(&mut self, block: &'tcx Block) {
A
Alex Crichton 已提交
703
        self.resolve_block(block);
704
    }
705 706 707 708 709
    fn visit_anon_const(&mut self, constant: &'tcx ast::AnonConst) {
        self.with_constant_rib(|this| {
            visit::walk_anon_const(this, constant);
        });
    }
710
    fn visit_expr(&mut self, expr: &'tcx Expr) {
711
        self.resolve_expr(expr, None);
712
    }
713
    fn visit_local(&mut self, local: &'tcx Local) {
A
Alex Crichton 已提交
714
        self.resolve_local(local);
715
    }
716
    fn visit_ty(&mut self, ty: &'tcx Ty) {
717 718 719 720 721 722
        match ty.node {
            TyKind::Path(ref qself, ref path) => {
                self.smart_resolve_path(ty.id, qself.as_ref(), path, PathSource::Type);
            }
            TyKind::ImplicitSelf => {
                let self_ty = keywords::SelfType.ident();
723
                let def = self.resolve_ident_in_lexical_scope(self_ty, TypeNS, Some(ty.id), ty.span)
724 725 726 727
                              .map_or(Def::Err, |d| d.def());
                self.record_def(ty.id, PathResolution::new(def));
            }
            _ => (),
728 729
        }
        visit::walk_ty(self, ty);
730
    }
731 732 733
    fn visit_poly_trait_ref(&mut self,
                            tref: &'tcx ast::PolyTraitRef,
                            m: &'tcx ast::TraitBoundModifier) {
734
        self.smart_resolve_path(tref.trait_ref.ref_id, None,
A
Alex Burka 已提交
735
                                &tref.trait_ref.path, PathSource::Trait(AliasPossibility::Maybe));
736
        visit::walk_poly_trait_ref(self, tref, m);
737
    }
738
    fn visit_foreign_item(&mut self, foreign_item: &'tcx ForeignItem) {
739
        let type_parameters = match foreign_item.node {
740
            ForeignItemKind::Fn(_, ref generics) => {
741
                HasTypeParameters(generics, ItemRibKind)
742
            }
743
            ForeignItemKind::Static(..) => NoTypeParameters,
P
Paul Lietar 已提交
744
            ForeignItemKind::Ty => NoTypeParameters,
745
            ForeignItemKind::Macro(..) => NoTypeParameters,
746 747
        };
        self.with_type_parameter_rib(type_parameters, |this| {
748
            visit::walk_foreign_item(this, foreign_item);
749 750 751
        });
    }
    fn visit_fn(&mut self,
752 753
                function_kind: FnKind<'tcx>,
                declaration: &'tcx FnDecl,
754
                _: Span,
T
Taylor Cramer 已提交
755 756 757 758 759 760 761 762 763 764 765
                node_id: NodeId)
    {
        let (rib_kind, asyncness) = match function_kind {
            FnKind::ItemFn(_, ref header, ..) =>
                (ItemRibKind, header.asyncness),
            FnKind::Method(_, ref sig, _, _) =>
                (TraitOrImplItemRibKind, sig.header.asyncness),
            FnKind::Closure(_) =>
                // Async closures aren't resolved through `visit_fn`-- they're
                // processed separately
                (ClosureRibKind(node_id), IsAsync::NotAsync),
766
        };
767 768

        // Create a value rib for the function.
J
Jeffrey Seyfried 已提交
769
        self.ribs[ValueNS].push(Rib::new(rib_kind));
770 771 772 773 774 775 776 777 778 779 780 781 782 783 784

        // Create a label rib for the function.
        self.label_ribs.push(Rib::new(rib_kind));

        // Add each argument to the rib.
        let mut bindings_list = FxHashMap();
        for argument in &declaration.inputs {
            self.resolve_pattern(&argument.pat, PatternSource::FnParam, &mut bindings_list);

            self.visit_ty(&argument.ty);

            debug!("(resolving function) recorded argument");
        }
        visit::walk_fn_ret_ty(self, &declaration.output);

T
Taylor Cramer 已提交
785
        // Resolve the function body, potentially inside the body of an async closure
786 787
        if let IsAsync::Async { closure_id, .. } = asyncness {
            let rib_kind = ClosureRibKind(closure_id);
T
Taylor Cramer 已提交
788 789 790 791
            self.ribs[ValueNS].push(Rib::new(rib_kind));
            self.label_ribs.push(Rib::new(rib_kind));
        }

792 793 794 795 796 797 798 799 800 801
        match function_kind {
            FnKind::ItemFn(.., body) |
            FnKind::Method(.., body) => {
                self.visit_block(body);
            }
            FnKind::Closure(body) => {
                self.visit_expr(body);
            }
        };

T
Taylor Cramer 已提交
802 803 804 805 806 807
        // Leave the body of the async closure
        if asyncness.is_async() {
            self.label_ribs.pop();
            self.ribs[ValueNS].pop();
        }

808 809 810
        debug!("(resolving function) leaving function");

        self.label_ribs.pop();
J
Jeffrey Seyfried 已提交
811
        self.ribs[ValueNS].pop();
812
    }
813 814 815
    fn visit_generics(&mut self, generics: &'tcx Generics) {
        // For type parameter defaults, we have to ban access
        // to following type parameters, as the Substs can only
816 817 818
        // provide previous type parameters as they're built. We
        // put all the parameters on the ban list and then remove
        // them one by one as they are processed and become available.
819
        let mut default_ban_rib = Rib::new(ForwardTyParamBanRibKind);
V
varkor 已提交
820
        let mut found_default = false;
821
        default_ban_rib.bindings.extend(generics.params.iter()
V
varkor 已提交
822
            .filter_map(|param| match param.kind {
V
varkor 已提交
823 824
                GenericParamKind::Lifetime { .. } => None,
                GenericParamKind::Type { ref default, .. } => {
V
varkor 已提交
825 826
                    found_default |= default.is_some();
                    if found_default {
V
varkor 已提交
827
                        Some((Ident::with_empty_ctxt(param.ident.name), Def::Err))
V
varkor 已提交
828 829
                    } else {
                        None
V
varkor 已提交
830 831 832
                    }
                }
            }));
833

834
        for param in &generics.params {
V
varkor 已提交
835
            match param.kind {
V
varkor 已提交
836
                GenericParamKind::Lifetime { .. } => self.visit_generic_param(param),
V
varkor 已提交
837 838
                GenericParamKind::Type { ref default, .. } => {
                    for bound in &param.bounds {
V
varkor 已提交
839
                        self.visit_param_bound(bound);
840
                    }
841

V
varkor 已提交
842
                    if let Some(ref ty) = default {
843 844 845 846
                        self.ribs[TypeNS].push(default_ban_rib);
                        self.visit_ty(ty);
                        default_ban_rib = self.ribs[TypeNS].pop().unwrap();
                    }
847

848
                    // Allow all following defaults to refer to this type parameter.
V
varkor 已提交
849
                    default_ban_rib.bindings.remove(&Ident::with_empty_ctxt(param.ident.name));
850 851
                }
            }
852
        }
V
varkor 已提交
853 854 855
        for p in &generics.where_clause.predicates {
            self.visit_where_predicate(p);
        }
856
    }
857
}
858

N
Niko Matsakis 已提交
859
#[derive(Copy, Clone)]
860
enum TypeParameters<'a, 'b> {
861
    NoTypeParameters,
C
corentih 已提交
862
    HasTypeParameters(// Type parameters.
863
                      &'b Generics,
864

C
corentih 已提交
865
                      // The kind of the rib used for type parameters.
866
                      RibKind<'a>),
867 868
}

M
Mark Mansi 已提交
869 870
/// The rib kind controls the translation of local
/// definitions (`Def::Local`) to upvars (`Def::Upvar`).
N
Niko Matsakis 已提交
871
#[derive(Copy, Clone, Debug)]
872
enum RibKind<'a> {
M
Mark Mansi 已提交
873
    /// No translation needs to be applied.
874
    NormalRibKind,
875

M
Mark Mansi 已提交
876 877
    /// We passed through a closure scope at the given node ID.
    /// Translate upvars as appropriate.
878
    ClosureRibKind(NodeId /* func id */),
879

M
Mark Mansi 已提交
880 881 882 883
    /// We passed through an impl or trait and are now in one of its
    /// methods or associated types. Allow references to ty params that impl or trait
    /// binds. Disallow any other upvars (including other ty params that are
    /// upvars).
884
    TraitOrImplItemRibKind,
885

M
Mark Mansi 已提交
886
    /// We passed through an item scope. Disallow upvars.
887
    ItemRibKind,
888

M
Mark Mansi 已提交
889
    /// We're in a constant item. Can't refer to dynamic stuff.
C
corentih 已提交
890
    ConstantItemRibKind,
891

M
Mark Mansi 已提交
892
    /// We passed through a module.
893
    ModuleRibKind(Module<'a>),
894

M
Mark Mansi 已提交
895
    /// We passed through a `macro_rules!` statement
896
    MacroDefinition(DefId),
897

M
Mark Mansi 已提交
898 899 900
    /// All bindings in this rib are type parameters that can't be used
    /// from the default of a type parameter because they're not declared
    /// before said type parameter. Also see the `visit_generics` override.
901
    ForwardTyParamBanRibKind,
902 903
}

904
/// One local scope.
905 906 907
///
/// A rib represents a scope names can live in. Note that these appear in many places, not just
/// around braces. At any place where the list of accessible names (of the given namespace)
908 909 910
/// changes or a new restrictions on the name accessibility are introduced, a new rib is put onto a
/// stack. This may be, for example, a `let` statement (because it introduces variables), a macro,
/// etc.
911 912 913 914 915
///
/// Different [rib kinds](enum.RibKind) are transparent for different names.
///
/// The resolution keeps a separate stack of ribs as it traverses the AST for each namespace. When
/// resolving, the name is looked up from inside out.
J
Jorge Aparicio 已提交
916
#[derive(Debug)]
917
struct Rib<'a> {
918
    bindings: FxHashMap<Ident, Def>,
919
    kind: RibKind<'a>,
B
Brian Anderson 已提交
920
}
921

922 923
impl<'a> Rib<'a> {
    fn new(kind: RibKind<'a>) -> Rib<'a> {
924
        Rib {
925
            bindings: FxHashMap(),
926
            kind,
927
        }
928 929 930
    }
}

931 932 933 934 935
/// An intermediate resolution result.
///
/// This refers to the thing referred by a name. The difference between `Def` and `Item` is that
/// items are visible in their whole block, while defs only from the place they are defined
/// forward.
936 937
enum LexicalScopeBinding<'a> {
    Item(&'a NameBinding<'a>),
J
Jeffrey Seyfried 已提交
938
    Def(Def),
939 940
}

941
impl<'a> LexicalScopeBinding<'a> {
942
    fn item(self) -> Option<&'a NameBinding<'a>> {
943
        match self {
944
            LexicalScopeBinding::Item(binding) => Some(binding),
945 946 947
            _ => None,
        }
    }
948 949 950 951 952 953 954

    fn def(self) -> Def {
        match self {
            LexicalScopeBinding::Item(binding) => binding.def(),
            LexicalScopeBinding::Def(def) => def,
        }
    }
955 956
}

957 958 959 960 961 962 963 964 965 966 967
#[derive(Copy, Clone, Debug)]
pub enum ModuleOrUniformRoot<'a> {
    /// Regular module.
    Module(Module<'a>),

    /// The `{{root}}` (`CrateRoot` aka "global") / `extern` initial segment
    /// in which external crates resolve, and also `crate` (only in `{{root}}`,
    /// but *not* `extern`), in the Rust 2018 edition.
    UniformRoot(Name),
}

968
#[derive(Clone, Debug)]
J
Jeffrey Seyfried 已提交
969
enum PathResult<'a> {
970
    Module(ModuleOrUniformRoot<'a>),
J
Jeffrey Seyfried 已提交
971 972
    NonModule(PathResolution),
    Indeterminate,
973
    Failed(Span, String, bool /* is the error from the last segment? */),
J
Jeffrey Seyfried 已提交
974 975
}

J
Jeffrey Seyfried 已提交
976
enum ModuleKind {
977 978 979 980 981 982 983 984 985 986 987 988
    /// An anonymous module, eg. just a block.
    ///
    /// ```
    /// fn main() {
    ///     fn f() {} // (1)
    ///     { // This is an anonymous module
    ///         f(); // This resolves to (2) as we are inside the block.
    ///         fn f() {} // (2)
    ///     }
    ///     f(); // Resolves to (1)
    /// }
    /// ```
J
Jeffrey Seyfried 已提交
989
    Block(NodeId),
990 991 992
    /// Any module with a name.
    ///
    /// This could be:
993
    ///
994 995 996
    /// * A normal module ‒ either `mod from_file;` or `mod from_block { }`.
    /// * A trait or an enum (it implicitly contains associated types, methods and variant
    ///   constructors).
J
Jeffrey Seyfried 已提交
997
    Def(Def, Name),
998 999
}

1000
/// One node in the tree of modules.
1001
pub struct ModuleData<'a> {
J
Jeffrey Seyfried 已提交
1002 1003
    parent: Option<Module<'a>>,
    kind: ModuleKind,
1004

1005 1006
    // The def id of the closest normal module (`mod`) ancestor (including this module).
    normal_ancestor_id: DefId,
1007

1008
    resolutions: RefCell<FxHashMap<(Ident, Namespace), &'a RefCell<NameResolution<'a>>>>,
1009
    legacy_macro_resolutions: RefCell<Vec<(Mark, Ident, MacroKind, Option<Def>)>>,
1010
    macro_resolutions: RefCell<Vec<(Box<[Ident]>, Span)>>,
1011

1012 1013 1014
    // Macro invocations that can expand into items in this module.
    unresolved_invocations: RefCell<FxHashSet<Mark>>,

1015
    no_implicit_prelude: bool,
1016

1017
    glob_importers: RefCell<Vec<&'a ImportDirective<'a>>>,
1018
    globs: RefCell<Vec<&'a ImportDirective<'a>>>,
1019

J
Jeffrey Seyfried 已提交
1020
    // Used to memoize the traits in this module for faster searches through all traits in scope.
1021
    traits: RefCell<Option<Box<[(Ident, &'a NameBinding<'a>)]>>>,
J
Jeffrey Seyfried 已提交
1022

1023 1024 1025
    // Whether this module is populated. If not populated, any attempt to
    // access the children must be preceded with a
    // `populate_module_if_necessary` call.
1026
    populated: Cell<bool>,
1027 1028 1029

    /// Span of the module itself. Used for error reporting.
    span: Span,
J
Jeffrey Seyfried 已提交
1030 1031

    expansion: Mark,
1032 1033
}

1034
type Module<'a> = &'a ModuleData<'a>;
1035

1036
impl<'a> ModuleData<'a> {
O
Oliver Schneider 已提交
1037 1038 1039
    fn new(parent: Option<Module<'a>>,
           kind: ModuleKind,
           normal_ancestor_id: DefId,
J
Jeffrey Seyfried 已提交
1040
           expansion: Mark,
O
Oliver Schneider 已提交
1041
           span: Span) -> Self {
1042
        ModuleData {
1043 1044 1045
            parent,
            kind,
            normal_ancestor_id,
1046
            resolutions: RefCell::new(FxHashMap()),
1047
            legacy_macro_resolutions: RefCell::new(Vec::new()),
1048
            macro_resolutions: RefCell::new(Vec::new()),
1049
            unresolved_invocations: RefCell::new(FxHashSet()),
1050
            no_implicit_prelude: false,
1051
            glob_importers: RefCell::new(Vec::new()),
1052
            globs: RefCell::new(Vec::new()),
J
Jeffrey Seyfried 已提交
1053
            traits: RefCell::new(None),
1054
            populated: Cell::new(normal_ancestor_id.is_local()),
1055 1056
            span,
            expansion,
1057
        }
B
Brian Anderson 已提交
1058 1059
    }

1060 1061 1062
    fn for_each_child<F: FnMut(Ident, Namespace, &'a NameBinding<'a>)>(&self, mut f: F) {
        for (&(ident, ns), name_resolution) in self.resolutions.borrow().iter() {
            name_resolution.borrow().binding.map(|binding| f(ident, ns, binding));
1063 1064 1065
        }
    }

1066 1067
    fn for_each_child_stable<F: FnMut(Ident, Namespace, &'a NameBinding<'a>)>(&self, mut f: F) {
        let resolutions = self.resolutions.borrow();
1068
        let mut resolutions = resolutions.iter().collect::<Vec<_>>();
V
Vadim Petrochenkov 已提交
1069
        resolutions.sort_by_cached_key(|&(&(ident, ns), _)| (ident.as_str(), ns));
1070
        for &(&(ident, ns), &resolution) in resolutions.iter() {
1071 1072 1073 1074
            resolution.borrow().binding.map(|binding| f(ident, ns, binding));
        }
    }

J
Jeffrey Seyfried 已提交
1075 1076 1077 1078 1079 1080 1081
    fn def(&self) -> Option<Def> {
        match self.kind {
            ModuleKind::Def(def, _) => Some(def),
            _ => None,
        }
    }

1082
    fn def_id(&self) -> Option<DefId> {
J
Jeffrey Seyfried 已提交
1083
        self.def().as_ref().map(Def::def_id)
1084 1085
    }

1086
    // `self` resolves to the first module ancestor that `is_normal`.
1087
    fn is_normal(&self) -> bool {
J
Jeffrey Seyfried 已提交
1088 1089
        match self.kind {
            ModuleKind::Def(Def::Mod(_), _) => true,
1090 1091 1092 1093 1094
            _ => false,
        }
    }

    fn is_trait(&self) -> bool {
J
Jeffrey Seyfried 已提交
1095 1096
        match self.kind {
            ModuleKind::Def(Def::Trait(_), _) => true,
1097
            _ => false,
1098
        }
B
Brian Anderson 已提交
1099
    }
1100 1101

    fn is_local(&self) -> bool {
1102
        self.normal_ancestor_id.is_local()
1103
    }
1104 1105 1106 1107

    fn nearest_item_scope(&'a self) -> Module<'a> {
        if self.is_trait() { self.parent.unwrap() } else { self }
    }
V
Victor Berger 已提交
1108 1109
}

1110
impl<'a> fmt::Debug for ModuleData<'a> {
1111
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
J
Jeffrey Seyfried 已提交
1112
        write!(f, "{:?}", self.def())
1113 1114 1115
    }
}

M
Mark Mansi 已提交
1116
/// Records a possibly-private value, type, or module definition.
1117
#[derive(Clone, Debug)]
1118
pub struct NameBinding<'a> {
1119
    kind: NameBindingKind<'a>,
1120
    expansion: Mark,
1121
    span: Span,
1122
    vis: ty::Visibility,
1123 1124
}

1125
pub trait ToNameBinding<'a> {
J
Jeffrey Seyfried 已提交
1126
    fn to_name_binding(self, arenas: &'a ResolverArenas<'a>) -> &'a NameBinding<'a>;
1127 1128
}

J
Jeffrey Seyfried 已提交
1129 1130
impl<'a> ToNameBinding<'a> for &'a NameBinding<'a> {
    fn to_name_binding(self, _: &'a ResolverArenas<'a>) -> &'a NameBinding<'a> {
1131 1132 1133 1134
        self
    }
}

1135
#[derive(Clone, Debug)]
1136
enum NameBindingKind<'a> {
1137
    Def(Def, /* is_macro_export */ bool),
1138
    Module(Module<'a>),
1139 1140
    Import {
        binding: &'a NameBinding<'a>,
1141
        directive: &'a ImportDirective<'a>,
1142
        used: Cell<bool>,
1143
    },
1144 1145 1146 1147
    Ambiguity {
        b1: &'a NameBinding<'a>,
        b2: &'a NameBinding<'a>,
    }
1148 1149
}

1150 1151
struct PrivacyError<'a>(Span, Name, &'a NameBinding<'a>);

1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
struct UseError<'a> {
    err: DiagnosticBuilder<'a>,
    /// Attach `use` statements for these candidates
    candidates: Vec<ImportSuggestion>,
    /// The node id of the module to place the use statements in
    node_id: NodeId,
    /// Whether the diagnostic should state that it's "better"
    better: bool,
}

J
Jeffrey Seyfried 已提交
1162 1163 1164
struct AmbiguityError<'a> {
    span: Span,
    name: Name,
1165
    lexical: bool,
J
Jeffrey Seyfried 已提交
1166 1167 1168 1169
    b1: &'a NameBinding<'a>,
    b2: &'a NameBinding<'a>,
}

1170
impl<'a> NameBinding<'a> {
J
Jeffrey Seyfried 已提交
1171
    fn module(&self) -> Option<Module<'a>> {
1172
        match self.kind {
J
Jeffrey Seyfried 已提交
1173
            NameBindingKind::Module(module) => Some(module),
1174
            NameBindingKind::Import { binding, .. } => binding.module(),
J
Jeffrey Seyfried 已提交
1175
            _ => None,
1176 1177 1178
        }
    }

1179
    fn def(&self) -> Def {
1180
        match self.kind {
1181
            NameBindingKind::Def(def, _) => def,
J
Jeffrey Seyfried 已提交
1182
            NameBindingKind::Module(module) => module.def().unwrap(),
1183
            NameBindingKind::Import { binding, .. } => binding.def(),
1184
            NameBindingKind::Ambiguity { .. } => Def::Err,
1185
        }
1186
    }
1187

1188
    fn def_ignoring_ambiguity(&self) -> Def {
J
Jeffrey Seyfried 已提交
1189
        match self.kind {
1190 1191 1192
            NameBindingKind::Import { binding, .. } => binding.def_ignoring_ambiguity(),
            NameBindingKind::Ambiguity { b1, .. } => b1.def_ignoring_ambiguity(),
            _ => self.def(),
J
Jeffrey Seyfried 已提交
1193 1194 1195
        }
    }

1196
    fn get_macro<'b: 'a>(&self, resolver: &mut Resolver<'a, 'b>) -> Lrc<SyntaxExtension> {
1197 1198 1199
        resolver.get_macro(self.def_ignoring_ambiguity())
    }

1200 1201
    // We sometimes need to treat variants as `pub` for backwards compatibility
    fn pseudo_vis(&self) -> ty::Visibility {
1202 1203 1204 1205 1206
        if self.is_variant() && self.def().def_id().is_local() {
            ty::Visibility::Public
        } else {
            self.vis
        }
1207 1208 1209 1210
    }

    fn is_variant(&self) -> bool {
        match self.kind {
1211 1212
            NameBindingKind::Def(Def::Variant(..), _) |
            NameBindingKind::Def(Def::VariantCtor(..), _) => true,
1213 1214
            _ => false,
        }
1215 1216
    }

1217
    fn is_extern_crate(&self) -> bool {
1218 1219 1220
        match self.kind {
            NameBindingKind::Import {
                directive: &ImportDirective {
1221
                    subclass: ImportDirectiveSubclass::ExternCrate(_), ..
1222 1223 1224 1225
                }, ..
            } => true,
            _ => false,
        }
1226
    }
1227 1228 1229 1230 1231 1232 1233

    fn is_import(&self) -> bool {
        match self.kind {
            NameBindingKind::Import { .. } => true,
            _ => false,
        }
    }
1234

1235 1236 1237 1238 1239 1240 1241 1242 1243
    fn is_renamed_extern_crate(&self) -> bool {
        if let NameBindingKind::Import { directive, ..} = self.kind {
            if let ImportDirectiveSubclass::ExternCrate(Some(_)) = directive.subclass {
                return true;
            }
        }
        false
    }

1244 1245 1246
    fn is_glob_import(&self) -> bool {
        match self.kind {
            NameBindingKind::Import { directive, .. } => directive.is_glob(),
1247
            NameBindingKind::Ambiguity { b1, .. } => b1.is_glob_import(),
1248 1249 1250 1251 1252
            _ => false,
        }
    }

    fn is_importable(&self) -> bool {
1253
        match self.def() {
1254 1255 1256 1257
            Def::AssociatedConst(..) | Def::Method(..) | Def::AssociatedTy(..) => false,
            _ => true,
        }
    }
1258 1259 1260

    fn is_macro_def(&self) -> bool {
        match self.kind {
1261
            NameBindingKind::Def(Def::Macro(..), _) => true,
1262 1263 1264
            _ => false,
        }
    }
1265 1266 1267 1268

    fn descr(&self) -> &'static str {
        if self.is_extern_crate() { "extern crate" } else { self.def().kind_name() }
    }
1269 1270
}

1271
/// Interns the names of the primitive types.
1272 1273 1274
///
/// All other types are defined somewhere and possibly imported, but the primitive ones need
/// special handling, since they have no place of origin.
F
Felix S. Klock II 已提交
1275
struct PrimitiveTypeTable {
1276
    primitive_types: FxHashMap<Name, PrimTy>,
1277
}
1278

1279
impl PrimitiveTypeTable {
K
Kevin Butler 已提交
1280
    fn new() -> PrimitiveTypeTable {
1281
        let mut table = PrimitiveTypeTable { primitive_types: FxHashMap() };
C
corentih 已提交
1282

1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
        table.intern("bool", Bool);
        table.intern("char", Char);
        table.intern("f32", Float(FloatTy::F32));
        table.intern("f64", Float(FloatTy::F64));
        table.intern("isize", Int(IntTy::Isize));
        table.intern("i8", Int(IntTy::I8));
        table.intern("i16", Int(IntTy::I16));
        table.intern("i32", Int(IntTy::I32));
        table.intern("i64", Int(IntTy::I64));
        table.intern("i128", Int(IntTy::I128));
        table.intern("str", Str);
        table.intern("usize", Uint(UintTy::Usize));
        table.intern("u8", Uint(UintTy::U8));
        table.intern("u16", Uint(UintTy::U16));
        table.intern("u32", Uint(UintTy::U32));
        table.intern("u64", Uint(UintTy::U64));
        table.intern("u128", Uint(UintTy::U128));
K
Kevin Butler 已提交
1300 1301 1302
        table
    }

1303
    fn intern(&mut self, string: &str, primitive_type: PrimTy) {
1304
        self.primitive_types.insert(Symbol::intern(string), primitive_type);
1305 1306 1307
    }
}

1308
/// The main resolver class.
1309 1310
///
/// This is the visitor that walks the whole crate.
1311
pub struct Resolver<'a, 'b: 'a> {
E
Eduard Burtescu 已提交
1312
    session: &'a Session,
1313
    cstore: &'a CStore,
1314

1315
    pub definitions: Definitions,
1316

1317
    graph_root: Module<'a>,
1318

1319
    prelude: Option<Module<'a>>,
1320
    extern_prelude: FxHashSet<Name>,
1321

M
Mark Mansi 已提交
1322
    /// n.b. This is used only for better diagnostics, not name resolution itself.
1323
    has_self: FxHashSet<DefId>,
1324

M
Mark Mansi 已提交
1325 1326
    /// Names of fields of an item `DefId` accessible with dot syntax.
    /// Used for hints during error reporting.
1327
    field_names: FxHashMap<DefId, Vec<Name>>,
1328

M
Mark Mansi 已提交
1329
    /// All imports known to succeed or fail.
1330 1331
    determined_imports: Vec<&'a ImportDirective<'a>>,

M
Mark Mansi 已提交
1332
    /// All non-determined imports.
1333
    indeterminate_imports: Vec<&'a ImportDirective<'a>>,
1334

M
Mark Mansi 已提交
1335
    /// The module that represents the current item scope.
1336
    current_module: Module<'a>,
1337

M
Mark Mansi 已提交
1338 1339
    /// The current set of local scopes for types and values.
    /// FIXME #4948: Reuse ribs to avoid allocation.
J
Jeffrey Seyfried 已提交
1340
    ribs: PerNS<Vec<Rib<'a>>>,
1341

M
Mark Mansi 已提交
1342
    /// The current set of local scopes, for labels.
1343
    label_ribs: Vec<Rib<'a>>,
1344

M
Mark Mansi 已提交
1345
    /// The trait that the current context can refer to.
1346
    current_trait_ref: Option<(Module<'a>, TraitRef)>,
1347

M
Mark Mansi 已提交
1348
    /// The current self type if inside an impl (used for better errors).
1349
    current_self_type: Option<Ty>,
1350

M
Mark Mansi 已提交
1351
    /// The idents for the primitive types.
E
Eduard Burtescu 已提交
1352
    primitive_type_table: PrimitiveTypeTable,
1353

1354
    def_map: DefMap,
1355
    import_map: ImportMap,
1356
    pub freevars: FreevarMap,
1357
    freevars_seen: NodeMap<NodeMap<usize>>,
1358 1359
    pub export_map: ExportMap,
    pub trait_map: TraitMap,
1360

M
Mark Mansi 已提交
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374
    /// A map from nodes to anonymous modules.
    /// Anonymous modules are pseudo-modules that are implicitly created around items
    /// contained within blocks.
    ///
    /// For example, if we have this:
    ///
    ///  fn f() {
    ///      fn g() {
    ///          ...
    ///      }
    ///  }
    ///
    /// There will be an anonymous module created around `g` with the ID of the
    /// entry block for `f`.
1375 1376
    block_map: NodeMap<Module<'a>>,
    module_map: FxHashMap<DefId, Module<'a>>,
J
Jeffrey Seyfried 已提交
1377
    extern_module_map: FxHashMap<(DefId, bool /* MacrosOnly? */), Module<'a>>,
1378

1379
    pub make_glob_map: bool,
1380 1381
    /// Maps imports to the names of items actually imported (this actually maps
    /// all imports, but only glob imports are actually interesting).
1382
    pub glob_map: GlobMap,
1383

1384
    used_imports: FxHashSet<(NodeId, Namespace)>,
1385
    pub maybe_unused_trait_imports: NodeSet,
1386
    pub maybe_unused_extern_crates: Vec<(NodeId, Span)>,
G
Garming Sam 已提交
1387

1388 1389 1390 1391
    /// A list of labels as of yet unused. Labels will be removed from this map when
    /// they are used (in a `break` or `continue` statement)
    pub unused_labels: FxHashMap<NodeId, Span>,

1392
    /// privacy errors are delayed until the end in order to deduplicate them
1393
    privacy_errors: Vec<PrivacyError<'a>>,
1394
    /// ambiguity errors are delayed for deduplication
J
Jeffrey Seyfried 已提交
1395
    ambiguity_errors: Vec<AmbiguityError<'a>>,
1396 1397
    /// `use` injections are delayed for better placement and deduplication
    use_injections: Vec<UseError<'a>>,
1398 1399
    /// `use` injections for proc macros wrongly imported with #[macro_use]
    proc_mac_errors: Vec<macros::ProcMacError>,
1400 1401
    /// crate-local macro expanded `macro_export` referred to by a module-relative path
    macro_expanded_macro_export_errors: BTreeSet<(Span, Span)>,
1402
    /// macro-expanded `macro_rules` shadowing existing macros
1403
    disallowed_shadowing: Vec<&'a LegacyBinding<'a>>,
1404 1405

    arenas: &'a ResolverArenas<'a>,
1406
    dummy_binding: &'a NameBinding<'a>,
1407

1408
    crate_loader: &'a mut CrateLoader<'b>,
J
Jeffrey Seyfried 已提交
1409
    macro_names: FxHashSet<Ident>,
1410
    macro_prelude: FxHashMap<Name, &'a NameBinding<'a>>,
1411
    pub all_macros: FxHashMap<Name, Def>,
1412
    macro_map: FxHashMap<DefId, Lrc<SyntaxExtension>>,
1413 1414
    macro_defs: FxHashMap<Mark, DefId>,
    local_macro_def_scopes: FxHashMap<NodeId, Module<'a>>,
1415
    pub whitelisted_legacy_custom_derives: Vec<Name>,
1416
    pub found_unresolved_macro: bool,
1417

M
Mark Mansi 已提交
1418 1419
    /// List of crate local macros that we need to warn about as being unused.
    /// Right now this only includes macro_rules! macros, and macros 2.0.
E
est31 已提交
1420
    unused_macros: FxHashSet<DefId>,
E
est31 已提交
1421

M
Mark Mansi 已提交
1422
    /// Maps the `Mark` of an expansion to its containing module or block.
1423
    invocations: FxHashMap<Mark, &'a InvocationData<'a>>,
1424

M
Mark Mansi 已提交
1425
    /// Avoid duplicated errors for "name already defined".
1426
    name_already_seen: FxHashMap<Name, Span>,
1427

M
Mark Mansi 已提交
1428
    /// A set of procedural macros imported by `#[macro_use]` that have already been warned about
1429
    warned_proc_macros: FxHashSet<Name>,
1430 1431

    potentially_unused_imports: Vec<&'a ImportDirective<'a>>,
1432

M
Mark Mansi 已提交
1433 1434
    /// This table maps struct IDs into struct constructor IDs,
    /// it's not used during normal resolution, only for better error reporting.
1435
    struct_constructors: DefIdMap<(Def, ty::Visibility)>,
1436

M
Mark Mansi 已提交
1437
    /// Only used for better errors on `fn(): fn()`
1438
    current_type_ascription: Vec<Span>,
1439 1440

    injected_crate: Option<Module<'a>>,
1441 1442 1443

    /// Only supposed to be used by rustdoc, otherwise should be false.
    pub ignore_extern_prelude_feature: bool,
1444 1445
}

1446
/// Nothing really interesting here, it just provides memory for the rest of the crate.
1447
pub struct ResolverArenas<'a> {
1448
    modules: arena::TypedArena<ModuleData<'a>>,
1449
    local_modules: RefCell<Vec<Module<'a>>>,
1450
    name_bindings: arena::TypedArena<NameBinding<'a>>,
1451
    import_directives: arena::TypedArena<ImportDirective<'a>>,
1452
    name_resolutions: arena::TypedArena<RefCell<NameResolution<'a>>>,
1453
    invocation_data: arena::TypedArena<InvocationData<'a>>,
J
Jeffrey Seyfried 已提交
1454
    legacy_bindings: arena::TypedArena<LegacyBinding<'a>>,
1455 1456 1457
}

impl<'a> ResolverArenas<'a> {
1458
    fn alloc_module(&'a self, module: ModuleData<'a>) -> Module<'a> {
1459 1460 1461 1462 1463 1464 1465 1466
        let module = self.modules.alloc(module);
        if module.def_id().map(|def_id| def_id.is_local()).unwrap_or(true) {
            self.local_modules.borrow_mut().push(module);
        }
        module
    }
    fn local_modules(&'a self) -> ::std::cell::Ref<'a, Vec<Module<'a>>> {
        self.local_modules.borrow()
1467 1468 1469 1470
    }
    fn alloc_name_binding(&'a self, name_binding: NameBinding<'a>) -> &'a NameBinding<'a> {
        self.name_bindings.alloc(name_binding)
    }
1471 1472
    fn alloc_import_directive(&'a self, import_directive: ImportDirective<'a>)
                              -> &'a ImportDirective {
1473 1474
        self.import_directives.alloc(import_directive)
    }
1475 1476 1477
    fn alloc_name_resolution(&'a self) -> &'a RefCell<NameResolution<'a>> {
        self.name_resolutions.alloc(Default::default())
    }
1478 1479 1480
    fn alloc_invocation_data(&'a self, expansion_data: InvocationData<'a>)
                             -> &'a InvocationData<'a> {
        self.invocation_data.alloc(expansion_data)
J
Jeffrey Seyfried 已提交
1481
    }
J
Jeffrey Seyfried 已提交
1482 1483 1484
    fn alloc_legacy_binding(&'a self, binding: LegacyBinding<'a>) -> &'a LegacyBinding<'a> {
        self.legacy_bindings.alloc(binding)
    }
1485 1486
}

1487
impl<'a, 'b: 'a, 'cl: 'b> ty::DefIdTree for &'a Resolver<'b, 'cl> {
1488 1489 1490
    fn parent(self, id: DefId) -> Option<DefId> {
        match id.krate {
            LOCAL_CRATE => self.definitions.def_key(id.index).parent,
1491
            _ => self.cstore.def_key(id).parent,
1492
        }.map(|index| DefId { index, ..id })
1493 1494 1495
    }
}

1496 1497
/// This interface is used through the AST→HIR step, to embed full paths into the HIR. After that
/// the resolver is no longer needed as all the relevant information is inline.
1498
impl<'a, 'cl> hir::lowering::Resolver for Resolver<'a, 'cl> {
J
Jeffrey Seyfried 已提交
1499
    fn resolve_hir_path(&mut self, path: &mut hir::Path, is_value: bool) {
1500 1501 1502 1503
        self.resolve_hir_path_cb(path, is_value,
                                 |resolver, span, error| resolve_error(resolver, span, error))
    }

T
Taylor Cramer 已提交
1504 1505 1506 1507 1508
    fn resolve_str_path(
        &mut self,
        span: Span,
        crate_root: Option<&str>,
        components: &[&str],
1509
        args: Option<P<hir::GenericArgs>>,
T
Taylor Cramer 已提交
1510 1511
        is_value: bool
    ) -> hir::Path {
V
Vadim Petrochenkov 已提交
1512
        let mut segments = iter::once(keywords::CrateRoot.ident())
T
Taylor Cramer 已提交
1513 1514 1515
            .chain(
                crate_root.into_iter()
                    .chain(components.iter().cloned())
V
Vadim Petrochenkov 已提交
1516 1517
                    .map(Ident::from_str)
            ).map(hir::PathSegment::from_ident).collect::<Vec<_>>();
T
Taylor Cramer 已提交
1518

1519
        if let Some(args) = args {
V
Vadim Petrochenkov 已提交
1520
            let ident = segments.last().unwrap().ident;
T
Taylor Cramer 已提交
1521
            *segments.last_mut().unwrap() = hir::PathSegment {
V
Vadim Petrochenkov 已提交
1522
                ident,
1523
                args: Some(args),
T
Taylor Cramer 已提交
1524 1525 1526 1527
                infer_types: true,
            };
        }

1528 1529 1530
        let mut path = hir::Path {
            span,
            def: Def::Err,
T
Taylor Cramer 已提交
1531
            segments: segments.into(),
1532 1533
        };

M
Manish Goregaokar 已提交
1534
        self.resolve_hir_path(&mut path, is_value);
1535 1536 1537
        path
    }

M
Manish Goregaokar 已提交
1538 1539 1540 1541
    fn get_resolution(&mut self, id: NodeId) -> Option<PathResolution> {
        self.def_map.get(&id).cloned()
    }

1542 1543 1544 1545
    fn get_import(&mut self, id: NodeId) -> PerNS<Option<PathResolution>> {
        self.import_map.get(&id).cloned().unwrap_or_default()
    }

M
Manish Goregaokar 已提交
1546 1547 1548 1549 1550
    fn definitions(&mut self) -> &mut Definitions {
        &mut self.definitions
    }
}

1551
impl<'a, 'crateloader> Resolver<'a, 'crateloader> {
1552 1553 1554
    /// Rustdoc uses this to resolve things in a recoverable way. ResolutionError<'a>
    /// isn't something that can be returned because it can't be made to live that long,
    /// and also it's a private type. Fortunately rustdoc doesn't need to know the error,
1555
    /// just that an error occurred.
M
Manish Goregaokar 已提交
1556 1557
    pub fn resolve_str_path_error(&mut self, span: Span, path_str: &str, is_value: bool)
        -> Result<hir::Path, ()> {
M
Manish Goregaokar 已提交
1558
        use std::iter;
1559
        let mut errored = false;
M
Manish Goregaokar 已提交
1560 1561 1562 1563 1564

        let mut path = if path_str.starts_with("::") {
            hir::Path {
                span,
                def: Def::Err,
1565 1566 1567
                segments: iter::once(keywords::CrateRoot.ident()).chain({
                    path_str.split("::").skip(1).map(Ident::from_str)
                }).map(hir::PathSegment::from_ident).collect(),
M
Manish Goregaokar 已提交
1568 1569 1570 1571 1572
            }
        } else {
            hir::Path {
                span,
                def: Def::Err,
1573 1574
                segments: path_str.split("::").map(Ident::from_str)
                                  .map(hir::PathSegment::from_ident).collect(),
M
Manish Goregaokar 已提交
1575 1576 1577
            }
        };
        self.resolve_hir_path_cb(&mut path, is_value, |_, _, _| errored = true);
1578 1579 1580 1581 1582 1583 1584 1585 1586
        if errored || path.def == Def::Err {
            Err(())
        } else {
            Ok(path)
        }
    }

    /// resolve_hir_path, but takes a callback in case there was an error
    fn resolve_hir_path_cb<F>(&mut self, path: &mut hir::Path, is_value: bool, error_callback: F)
1587 1588
        where F: for<'c, 'b> FnOnce(&'c mut Resolver, Span, ResolutionError<'b>)
    {
1589
        let namespace = if is_value { ValueNS } else { TypeNS };
1590
        let hir::Path { ref segments, span, ref mut def } = *path;
1591
        let path: Vec<_> = segments.iter().map(|seg| seg.ident).collect();
1592
        // FIXME (Manishearth): Intra doc links won't get warned of epoch changes
1593 1594 1595
        match self.resolve_path(None, &path, Some(namespace), true, span, CrateLint::No) {
            PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
                *def = module.def().unwrap(),
1596 1597
            PathResult::NonModule(path_res) if path_res.unresolved_segments() == 0 =>
                *def = path_res.base_def(),
N
Niko Matsakis 已提交
1598
            PathResult::NonModule(..) => match self.resolve_path(
1599
                None,
N
Niko Matsakis 已提交
1600 1601 1602 1603 1604 1605
                &path,
                None,
                true,
                span,
                CrateLint::No,
            ) {
1606
                PathResult::Failed(span, msg, _) => {
1607
                    error_callback(self, span, ResolutionError::FailedToResolve(&msg));
J
Jeffrey Seyfried 已提交
1608 1609 1610
                }
                _ => {}
            },
1611
            PathResult::Module(ModuleOrUniformRoot::UniformRoot(_)) |
J
Jeffrey Seyfried 已提交
1612
            PathResult::Indeterminate => unreachable!(),
1613
            PathResult::Failed(span, msg, _) => {
1614
                error_callback(self, span, ResolutionError::FailedToResolve(&msg));
1615 1616 1617 1618 1619
            }
        }
    }
}

1620
impl<'a, 'crateloader: 'a> Resolver<'a, 'crateloader> {
1621
    pub fn new(session: &'a Session,
1622
               cstore: &'a CStore,
1623
               krate: &Crate,
1624
               crate_name: &str,
1625
               make_glob_map: MakeGlobMap,
1626
               crate_loader: &'a mut CrateLoader<'crateloader>,
1627
               arenas: &'a ResolverArenas<'a>)
1628
               -> Resolver<'a, 'crateloader> {
1629 1630
        let root_def_id = DefId::local(CRATE_DEF_INDEX);
        let root_module_kind = ModuleKind::Def(Def::Mod(root_def_id), keywords::Invalid.name());
1631
        let graph_root = arenas.alloc_module(ModuleData {
1632
            no_implicit_prelude: attr::contains_name(&krate.attrs, "no_implicit_prelude"),
J
Jeffrey Seyfried 已提交
1633
            ..ModuleData::new(None, root_module_kind, root_def_id, Mark::root(), krate.span)
1634
        });
1635 1636
        let mut module_map = FxHashMap();
        module_map.insert(DefId::local(CRATE_DEF_INDEX), graph_root);
K
Kevin Butler 已提交
1637

1638
        let mut definitions = Definitions::new();
J
Jeffrey Seyfried 已提交
1639
        DefCollector::new(&mut definitions, Mark::root())
1640
            .collect_root(crate_name, session.local_crate_disambiguator());
1641

1642 1643 1644 1645 1646 1647 1648 1649 1650 1651
        let mut extern_prelude: FxHashSet<Name> =
            session.opts.externs.iter().map(|kv| Symbol::intern(kv.0)).collect();
        if !attr::contains_name(&krate.attrs, "no_core") {
            if !attr::contains_name(&krate.attrs, "no_std") {
                extern_prelude.insert(Symbol::intern("std"));
            } else {
                extern_prelude.insert(Symbol::intern("core"));
            }
        }

1652
        let mut invocations = FxHashMap();
1653 1654
        invocations.insert(Mark::root(),
                           arenas.alloc_invocation_data(InvocationData::root(graph_root)));
1655

1656 1657 1658
        let mut macro_defs = FxHashMap();
        macro_defs.insert(Mark::root(), root_def_id);

K
Kevin Butler 已提交
1659
        Resolver {
1660
            session,
K
Kevin Butler 已提交
1661

1662 1663
            cstore,

1664
            definitions,
1665

K
Kevin Butler 已提交
1666 1667
            // The outermost module has def ID 0; this is not reflected in the
            // AST.
1668
            graph_root,
1669
            prelude: None,
1670
            extern_prelude,
K
Kevin Butler 已提交
1671

1672
            has_self: FxHashSet(),
1673
            field_names: FxHashMap(),
K
Kevin Butler 已提交
1674

1675
            determined_imports: Vec::new(),
1676
            indeterminate_imports: Vec::new(),
K
Kevin Butler 已提交
1677

1678
            current_module: graph_root,
J
Jeffrey Seyfried 已提交
1679 1680 1681
            ribs: PerNS {
                value_ns: vec![Rib::new(ModuleRibKind(graph_root))],
                type_ns: vec![Rib::new(ModuleRibKind(graph_root))],
1682
                macro_ns: vec![Rib::new(ModuleRibKind(graph_root))],
J
Jeffrey Seyfried 已提交
1683
            },
1684
            label_ribs: Vec::new(),
K
Kevin Butler 已提交
1685 1686 1687 1688 1689 1690

            current_trait_ref: None,
            current_self_type: None,

            primitive_type_table: PrimitiveTypeTable::new(),

1691
            def_map: NodeMap(),
1692
            import_map: NodeMap(),
1693 1694
            freevars: NodeMap(),
            freevars_seen: NodeMap(),
A
Alex Crichton 已提交
1695
            export_map: FxHashMap(),
1696
            trait_map: NodeMap(),
1697
            module_map,
1698
            block_map: NodeMap(),
J
Jeffrey Seyfried 已提交
1699
            extern_module_map: FxHashMap(),
K
Kevin Butler 已提交
1700

1701
            make_glob_map: make_glob_map == MakeGlobMap::Yes,
1702
            glob_map: NodeMap(),
G
Garming Sam 已提交
1703

1704
            used_imports: FxHashSet(),
S
Seo Sanghyeon 已提交
1705
            maybe_unused_trait_imports: NodeSet(),
1706
            maybe_unused_extern_crates: Vec::new(),
S
Seo Sanghyeon 已提交
1707

1708 1709
            unused_labels: FxHashMap(),

1710
            privacy_errors: Vec::new(),
1711
            ambiguity_errors: Vec::new(),
1712
            use_injections: Vec::new(),
1713
            proc_mac_errors: Vec::new(),
1714
            disallowed_shadowing: Vec::new(),
1715
            macro_expanded_macro_export_errors: BTreeSet::new(),
1716

1717
            arenas,
1718
            dummy_binding: arenas.alloc_name_binding(NameBinding {
1719
                kind: NameBindingKind::Def(Def::Err, false),
1720
                expansion: Mark::root(),
1721 1722 1723
                span: DUMMY_SP,
                vis: ty::Visibility::Public,
            }),
1724

1725
            crate_loader,
1726
            macro_names: FxHashSet(),
1727
            macro_prelude: FxHashMap(),
1728
            all_macros: FxHashMap(),
J
Jeffrey Seyfried 已提交
1729
            macro_map: FxHashMap(),
1730 1731
            invocations,
            macro_defs,
1732
            local_macro_def_scopes: FxHashMap(),
1733
            name_already_seen: FxHashMap(),
1734
            whitelisted_legacy_custom_derives: Vec::new(),
1735
            warned_proc_macros: FxHashSet(),
1736
            potentially_unused_imports: Vec::new(),
1737
            struct_constructors: DefIdMap(),
1738
            found_unresolved_macro: false,
E
est31 已提交
1739
            unused_macros: FxHashSet(),
1740
            current_type_ascription: Vec::new(),
1741
            injected_crate: None,
1742
            ignore_extern_prelude_feature: false,
1743 1744 1745
        }
    }

1746
    pub fn arenas() -> ResolverArenas<'a> {
1747 1748
        ResolverArenas {
            modules: arena::TypedArena::new(),
1749
            local_modules: RefCell::new(Vec::new()),
1750
            name_bindings: arena::TypedArena::new(),
1751
            import_directives: arena::TypedArena::new(),
1752
            name_resolutions: arena::TypedArena::new(),
1753
            invocation_data: arena::TypedArena::new(),
J
Jeffrey Seyfried 已提交
1754
            legacy_bindings: arena::TypedArena::new(),
K
Kevin Butler 已提交
1755 1756
        }
    }
1757

1758
    /// Runs the function on each namespace.
1759 1760 1761
    fn per_ns<F: FnMut(&mut Self, Namespace)>(&mut self, mut f: F) {
        f(self, TypeNS);
        f(self, ValueNS);
1762
        f(self, MacroNS);
J
Jeffrey Seyfried 已提交
1763 1764
    }

J
Jeffrey Seyfried 已提交
1765 1766 1767 1768 1769 1770 1771 1772 1773
    fn macro_def(&self, mut ctxt: SyntaxContext) -> DefId {
        loop {
            match self.macro_defs.get(&ctxt.outer()) {
                Some(&def_id) => return def_id,
                None => ctxt.remove_mark(),
            };
        }
    }

1774 1775
    /// Entry point to crate resolution.
    pub fn resolve_crate(&mut self, krate: &Crate) {
1776
        ImportResolver { resolver: self }.finalize_imports();
1777
        self.current_module = self.graph_root;
1778
        self.finalize_current_module_macro_resolutions();
1779

1780 1781 1782
        visit::walk_crate(self, krate);

        check_unused::check_crate(self, krate);
1783
        self.report_errors(krate);
1784
        self.crate_loader.postprocess(krate);
1785 1786
    }

O
Oliver Schneider 已提交
1787 1788 1789 1790 1791
    fn new_module(
        &self,
        parent: Module<'a>,
        kind: ModuleKind,
        normal_ancestor_id: DefId,
J
Jeffrey Seyfried 已提交
1792
        expansion: Mark,
O
Oliver Schneider 已提交
1793 1794
        span: Span,
    ) -> Module<'a> {
J
Jeffrey Seyfried 已提交
1795 1796
        let module = ModuleData::new(Some(parent), kind, normal_ancestor_id, expansion, span);
        self.arenas.alloc_module(module)
1797 1798
    }

1799
    fn record_use(&mut self, ident: Ident, ns: Namespace, binding: &'a NameBinding<'a>, span: Span)
1800
                  -> bool /* true if an error was reported */ {
1801
        match binding.kind {
1802
            NameBindingKind::Import { directive, binding, ref used }
J
Jeffrey Seyfried 已提交
1803
                    if !used.get() => {
1804
                used.set(true);
1805
                directive.used.set(true);
1806
                self.used_imports.insert((directive.id, ns));
1807 1808
                self.add_to_glob_map(directive.id, ident);
                self.record_use(ident, ns, binding, span)
1809 1810
            }
            NameBindingKind::Import { .. } => false,
1811
            NameBindingKind::Ambiguity { b1, b2 } => {
1812
                self.ambiguity_errors.push(AmbiguityError {
1813
                    span, name: ident.name, lexical: false, b1, b2,
1814
                });
1815
                true
1816 1817
            }
            _ => false
1818
        }
1819
    }
1820

1821
    fn add_to_glob_map(&mut self, id: NodeId, ident: Ident) {
1822
        if self.make_glob_map {
1823
            self.glob_map.entry(id).or_default().insert(ident.name);
1824
        }
1825 1826
    }

1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840
    /// This resolves the identifier `ident` in the namespace `ns` in the current lexical scope.
    /// More specifically, we proceed up the hierarchy of scopes and return the binding for
    /// `ident` in the first scope that defines it (or None if no scopes define it).
    ///
    /// A block's items are above its local variables in the scope hierarchy, regardless of where
    /// the items are defined in the block. For example,
    /// ```rust
    /// fn f() {
    ///    g(); // Since there are no local variables in scope yet, this resolves to the item.
    ///    let g = || {};
    ///    fn g() {}
    ///    g(); // This resolves to the local variable `g` since it shadows the item.
    /// }
    /// ```
1841
    ///
1842 1843
    /// Invariant: This must only be called during main resolution, not during
    /// import resolution.
1844
    fn resolve_ident_in_lexical_scope(&mut self,
1845
                                      mut ident: Ident,
1846
                                      ns: Namespace,
1847
                                      record_used_id: Option<NodeId>,
1848
                                      path_span: Span)
1849
                                      -> Option<LexicalScopeBinding<'a>> {
1850
        let record_used = record_used_id.is_some();
1851
        assert!(ns == TypeNS  || ns == ValueNS);
1852
        if ns == TypeNS {
1853 1854 1855
            ident.span = if ident.name == keywords::SelfType.name() {
                // FIXME(jseyfried) improve `Self` hygiene
                ident.span.with_ctxt(SyntaxContext::empty())
J
Jeffrey Seyfried 已提交
1856
            } else {
1857
                ident.span.modern()
J
Jeffrey Seyfried 已提交
1858
            }
1859 1860
        } else {
            ident = ident.modern_and_legacy();
1861
        }
1862

1863
        // Walk backwards up the ribs in scope.
J
Jeffrey Seyfried 已提交
1864
        let mut module = self.graph_root;
J
Jeffrey Seyfried 已提交
1865 1866
        for i in (0 .. self.ribs[ns].len()).rev() {
            if let Some(def) = self.ribs[ns][i].bindings.get(&ident).cloned() {
1867
                // The ident resolves to a type parameter or local variable.
1868
                return Some(LexicalScopeBinding::Def(
1869
                    self.adjust_local_def(ns, i, def, record_used, path_span)
1870
                ));
1871 1872
            }

J
Jeffrey Seyfried 已提交
1873 1874
            module = match self.ribs[ns][i].kind {
                ModuleRibKind(module) => module,
1875
                MacroDefinition(def) if def == self.macro_def(ident.span.ctxt()) => {
J
Jeffrey Seyfried 已提交
1876 1877
                    // If an invocation of this macro created `ident`, give up on `ident`
                    // and switch to `ident`'s source from the macro definition.
1878
                    ident.span.remove_mark();
J
Jeffrey Seyfried 已提交
1879
                    continue
1880
                }
J
Jeffrey Seyfried 已提交
1881 1882
                _ => continue,
            };
1883

J
Jeffrey Seyfried 已提交
1884
            let item = self.resolve_ident_in_module_unadjusted(
1885 1886 1887 1888 1889 1890
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                record_used,
                path_span,
J
Jeffrey Seyfried 已提交
1891 1892 1893 1894
            );
            if let Ok(binding) = item {
                // The ident resolves to an item.
                return Some(LexicalScopeBinding::Item(binding));
1895
            }
1896

J
Jeffrey Seyfried 已提交
1897 1898 1899 1900 1901 1902
            match module.kind {
                ModuleKind::Block(..) => {}, // We can see through blocks
                _ => break,
            }
        }

1903
        ident.span = ident.span.modern();
1904
        let mut poisoned = None;
J
Jeffrey Seyfried 已提交
1905
        loop {
1906
            let opt_module = if let Some(node_id) = record_used_id {
1907
                self.hygienic_lexical_parent_with_compatibility_fallback(module, &mut ident.span,
1908
                                                                         node_id, &mut poisoned)
1909
            } else {
1910
                self.hygienic_lexical_parent(module, &mut ident.span)
1911 1912
            };
            module = unwrap_or!(opt_module, break);
J
Jeffrey Seyfried 已提交
1913 1914 1915
            let orig_current_module = self.current_module;
            self.current_module = module; // Lexical resolutions can never be a privacy error.
            let result = self.resolve_ident_in_module_unadjusted(
1916 1917 1918 1919 1920 1921
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                record_used,
                path_span,
J
Jeffrey Seyfried 已提交
1922 1923 1924 1925
            );
            self.current_module = orig_current_module;

            match result {
1926
                Ok(binding) => {
1927
                    if let Some(node_id) = poisoned {
1928 1929
                        self.session.buffer_lint_with_diagnostic(
                            lint::builtin::PROC_MACRO_DERIVE_RESOLUTION_FALLBACK,
1930
                            node_id, ident.span,
1931 1932 1933 1934 1935 1936 1937
                            &format!("cannot find {} `{}` in this scope", ns.descr(), ident),
                            lint::builtin::BuiltinLintDiagnostics::
                                ProcMacroDeriveResolutionFallback(ident.span),
                        );
                    }
                    return Some(LexicalScopeBinding::Item(binding))
                }
1938 1939 1940
                Err(Determined) => continue,
                Err(Undetermined) =>
                    span_bug!(ident.span, "undetermined resolution during main resolution pass"),
J
Jeffrey Seyfried 已提交
1941 1942 1943
            }
        }

1944 1945 1946
        if !module.no_implicit_prelude {
            // `record_used` means that we don't try to load crates during speculative resolution
            if record_used && ns == TypeNS && self.extern_prelude.contains(&ident.name) {
1947 1948
                if !self.session.features_untracked().extern_prelude &&
                   !self.ignore_extern_prelude_feature {
1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961
                    feature_err(&self.session.parse_sess, "extern_prelude",
                                ident.span, GateIssue::Language,
                                "access to extern crates through prelude is experimental").emit();
                }

                let crate_id = self.crate_loader.process_path_extern(ident.name, ident.span);
                let crate_root = self.get_module(DefId { krate: crate_id, index: CRATE_DEF_INDEX });
                self.populate_module_if_necessary(crate_root);

                let binding = (crate_root, ty::Visibility::Public,
                               ident.span, Mark::root()).to_name_binding(self.arenas);
                return Some(LexicalScopeBinding::Item(binding));
            }
1962 1963 1964 1965 1966
            if ns == TypeNS && is_known_tool(ident.name) {
                let binding = (Def::ToolMod, ty::Visibility::Public,
                               ident.span, Mark::root()).to_name_binding(self.arenas);
                return Some(LexicalScopeBinding::Item(binding));
            }
1967
            if let Some(prelude) = self.prelude {
1968 1969 1970 1971 1972 1973 1974 1975
                if let Ok(binding) = self.resolve_ident_in_module_unadjusted(
                    ModuleOrUniformRoot::Module(prelude),
                    ident,
                    ns,
                    false,
                    false,
                    path_span,
                ) {
1976 1977
                    return Some(LexicalScopeBinding::Item(binding));
                }
J
Jeffrey Seyfried 已提交
1978 1979
            }
        }
1980 1981

        None
J
Jeffrey Seyfried 已提交
1982 1983
    }

1984
    fn hygienic_lexical_parent(&mut self, module: Module<'a>, span: &mut Span)
J
Jeffrey Seyfried 已提交
1985
                               -> Option<Module<'a>> {
1986 1987
        if !module.expansion.is_descendant_of(span.ctxt().outer()) {
            return Some(self.macro_def_scope(span.remove_mark()));
J
Jeffrey Seyfried 已提交
1988 1989 1990 1991 1992 1993
        }

        if let ModuleKind::Block(..) = module.kind {
            return Some(module.parent.unwrap());
        }

1994 1995 1996
        None
    }

1997 1998 1999 2000
    fn hygienic_lexical_parent_with_compatibility_fallback(&mut self, module: Module<'a>,
                                                           span: &mut Span, node_id: NodeId,
                                                           poisoned: &mut Option<NodeId>)
                                                           -> Option<Module<'a>> {
2001
        if let module @ Some(..) = self.hygienic_lexical_parent(module, span) {
2002
            return module;
2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022
        }

        // We need to support the next case under a deprecation warning
        // ```
        // struct MyStruct;
        // ---- begin: this comes from a proc macro derive
        // mod implementation_details {
        //     // Note that `MyStruct` is not in scope here.
        //     impl SomeTrait for MyStruct { ... }
        // }
        // ---- end
        // ```
        // So we have to fall back to the module's parent during lexical resolution in this case.
        if let Some(parent) = module.parent {
            // Inner module is inside the macro, parent module is outside of the macro.
            if module.expansion != parent.expansion &&
            module.expansion.is_descendant_of(parent.expansion) {
                // The macro is a proc macro derive
                if module.expansion.looks_like_proc_macro_derive() {
                    if parent.expansion.is_descendant_of(span.ctxt().outer()) {
2023 2024
                        *poisoned = Some(node_id);
                        return module.parent;
2025 2026
                    }
                }
2027
            }
2028
        }
2029

2030
        None
2031 2032
    }

J
Jeffrey Seyfried 已提交
2033
    fn resolve_ident_in_module(&mut self,
2034
                               module: ModuleOrUniformRoot<'a>,
J
Jeffrey Seyfried 已提交
2035 2036 2037 2038 2039
                               mut ident: Ident,
                               ns: Namespace,
                               record_used: bool,
                               span: Span)
                               -> Result<&'a NameBinding<'a>, Determinacy> {
2040
        ident.span = ident.span.modern();
J
Jeffrey Seyfried 已提交
2041
        let orig_current_module = self.current_module;
2042 2043 2044 2045
        if let ModuleOrUniformRoot::Module(module) = module {
            if let Some(def) = ident.span.adjust(module.expansion) {
                self.current_module = self.macro_def_scope(def);
            }
J
Jeffrey Seyfried 已提交
2046 2047
        }
        let result = self.resolve_ident_in_module_unadjusted(
2048
            module, ident, ns, false, record_used, span,
J
Jeffrey Seyfried 已提交
2049 2050 2051 2052 2053
        );
        self.current_module = orig_current_module;
        result
    }

2054 2055 2056
    fn resolve_crate_root(&mut self, ident: Ident) -> Module<'a> {
        let mut ctxt = ident.span.ctxt();
        let mark = if ident.name == keywords::DollarCrate.name() {
2057 2058 2059
            // When resolving `$crate` from a `macro_rules!` invoked in a `macro`,
            // we don't want to pretend that the `macro_rules!` definition is in the `macro`
            // as described in `SyntaxContext::apply_mark`, so we ignore prepended modern marks.
2060 2061 2062 2063 2064 2065 2066
            // FIXME: This is only a guess and it doesn't work correctly for `macro_rules!`
            // definitions actually produced by `macro` and `macro` definitions produced by
            // `macro_rules!`, but at least such configurations are not stable yet.
            ctxt = ctxt.modern_and_legacy();
            let mut iter = ctxt.marks().into_iter().rev().peekable();
            let mut result = None;
            // Find the last modern mark from the end if it exists.
2067 2068
            while let Some(&(mark, transparency)) = iter.peek() {
                if transparency == Transparency::Opaque {
2069 2070 2071 2072 2073 2074 2075
                    result = Some(mark);
                    iter.next();
                } else {
                    break;
                }
            }
            // Then find the last legacy mark from the end if it exists.
2076 2077
            for (mark, transparency) in iter {
                if transparency == Transparency::SemiTransparent {
2078 2079 2080 2081 2082 2083
                    result = Some(mark);
                } else {
                    break;
                }
            }
            result
2084 2085 2086 2087 2088
        } else {
            ctxt = ctxt.modern();
            ctxt.adjust(Mark::root())
        };
        let module = match mark {
J
Jeffrey Seyfried 已提交
2089 2090 2091 2092 2093 2094 2095 2096
            Some(def) => self.macro_def_scope(def),
            None => return self.graph_root,
        };
        self.get_module(DefId { index: CRATE_DEF_INDEX, ..module.normal_ancestor_id })
    }

    fn resolve_self(&mut self, ctxt: &mut SyntaxContext, module: Module<'a>) -> Module<'a> {
        let mut module = self.get_module(module.normal_ancestor_id);
2097
        while module.span.ctxt().modern() != *ctxt {
J
Jeffrey Seyfried 已提交
2098 2099
            let parent = module.parent.unwrap_or_else(|| self.macro_def_scope(ctxt.remove_mark()));
            module = self.get_module(parent.normal_ancestor_id);
2100
        }
J
Jeffrey Seyfried 已提交
2101
        module
2102 2103
    }

2104 2105
    // AST resolution
    //
2106
    // We maintain a list of value ribs and type ribs.
2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121
    //
    // Simultaneously, we keep track of the current position in the module
    // graph in the `current_module` pointer. When we go to resolve a name in
    // the value or type namespaces, we first look through all the ribs and
    // then query the module graph. When we resolve a name in the module
    // namespace, we can skip all the ribs (since nested modules are not
    // allowed within blocks in Rust) and jump straight to the current module
    // graph node.
    //
    // Named implementations are handled separately. When we find a method
    // call, we consult the module node to find all of the implementations in
    // scope. This information is lazily cached in the module node. We then
    // generate a fake "implementation scope" containing all the
    // implementations thus found, for compatibility with old resolve pass.

M
Manish Goregaokar 已提交
2122 2123
    pub fn with_scope<F, T>(&mut self, id: NodeId, f: F) -> T
        where F: FnOnce(&mut Resolver) -> T
J
Jorge Aparicio 已提交
2124
    {
2125
        let id = self.definitions.local_def_id(id);
2126 2127
        let module = self.module_map.get(&id).cloned(); // clones a reference
        if let Some(module) = module {
2128
            // Move down in the graph.
2129
            let orig_module = replace(&mut self.current_module, module);
J
Jeffrey Seyfried 已提交
2130 2131
            self.ribs[ValueNS].push(Rib::new(ModuleRibKind(module)));
            self.ribs[TypeNS].push(Rib::new(ModuleRibKind(module)));
2132

2133
            self.finalize_current_module_macro_resolutions();
M
Manish Goregaokar 已提交
2134
            let ret = f(self);
2135

2136
            self.current_module = orig_module;
J
Jeffrey Seyfried 已提交
2137 2138
            self.ribs[ValueNS].pop();
            self.ribs[TypeNS].pop();
M
Manish Goregaokar 已提交
2139
            ret
2140
        } else {
M
Manish Goregaokar 已提交
2141
            f(self)
2142
        }
2143 2144
    }

2145 2146 2147
    /// Searches the current set of local scopes for labels. Returns the first non-None label that
    /// is returned by the given predicate function
    ///
S
Seo Sanghyeon 已提交
2148
    /// Stops after meeting a closure.
2149 2150 2151
    fn search_label<P, R>(&self, mut ident: Ident, pred: P) -> Option<R>
        where P: Fn(&Rib, Ident) -> Option<R>
    {
2152 2153
        for rib in self.label_ribs.iter().rev() {
            match rib.kind {
J
Jeffrey Seyfried 已提交
2154 2155 2156
                NormalRibKind => {}
                // If an invocation of this macro created `ident`, give up on `ident`
                // and switch to `ident`'s source from the macro definition.
2157
                MacroDefinition(def) => {
2158 2159
                    if def == self.macro_def(ident.span.ctxt()) {
                        ident.span.remove_mark();
2160 2161
                    }
                }
2162 2163
                _ => {
                    // Do not resolve labels across function boundary
C
corentih 已提交
2164
                    return None;
2165 2166
                }
            }
2167 2168 2169
            let r = pred(rib, ident);
            if r.is_some() {
                return r;
2170 2171 2172 2173 2174
            }
        }
        None
    }

2175
    fn resolve_item(&mut self, item: &Item) {
2176
        let name = item.ident.name;
C
corentih 已提交
2177
        debug!("(resolving item) resolving {}", name);
2178

2179
        match item.node {
2180
            ItemKind::Ty(_, ref generics) |
2181 2182
            ItemKind::Fn(_, _, ref generics, _) |
            ItemKind::Existential(_, ref generics) => {
2183
                self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind),
2184 2185 2186 2187 2188 2189 2190 2191
                                             |this| visit::walk_item(this, item));
            }

            ItemKind::Enum(_, ref generics) |
            ItemKind::Struct(_, ref generics) |
            ItemKind::Union(_, ref generics) => {
                self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind), |this| {
                    let item_def_id = this.definitions.local_def_id(item.id);
A
Alexander Regueiro 已提交
2192 2193 2194 2195 2196
                    if this.session.features_untracked().self_in_typedefs {
                        this.with_self_rib(Def::SelfTy(None, Some(item_def_id)), |this| {
                            visit::walk_item(this, item);
                        });
                    } else {
2197
                        visit::walk_item(this, item);
A
Alexander Regueiro 已提交
2198
                    }
2199
                });
2200 2201
            }

V
Vadim Petrochenkov 已提交
2202
            ItemKind::Impl(.., ref generics, ref opt_trait_ref, ref self_type, ref impl_items) =>
2203
                self.resolve_implementation(generics,
2204
                                            opt_trait_ref,
J
Jonas Schievink 已提交
2205
                                            &self_type,
2206
                                            item.id,
2207
                                            impl_items),
2208

2209
            ItemKind::Trait(.., ref generics, ref bounds, ref trait_items) => {
2210
                // Create a new rib for the trait-wide type parameters.
2211
                self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind), |this| {
2212
                    let local_def_id = this.definitions.local_def_id(item.id);
2213
                    this.with_self_rib(Def::SelfTy(Some(local_def_id), None), |this| {
2214
                        this.visit_generics(generics);
V
varkor 已提交
2215
                        walk_list!(this, visit_param_bound, bounds);
2216 2217

                        for trait_item in trait_items {
2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232
                            let type_parameters = HasTypeParameters(&trait_item.generics,
                                                                    TraitOrImplItemRibKind);
                            this.with_type_parameter_rib(type_parameters, |this| {
                                match trait_item.node {
                                    TraitItemKind::Const(ref ty, ref default) => {
                                        this.visit_ty(ty);

                                        // Only impose the restrictions of
                                        // ConstRibKind for an actual constant
                                        // expression in a provided default.
                                        if let Some(ref expr) = *default{
                                            this.with_constant_rib(|this| {
                                                this.visit_expr(expr);
                                            });
                                        }
2233
                                    }
2234
                                    TraitItemKind::Method(_, _) => {
2235
                                        visit::walk_trait_item(this, trait_item)
2236 2237
                                    }
                                    TraitItemKind::Type(..) => {
2238
                                        visit::walk_trait_item(this, trait_item)
2239 2240 2241 2242 2243 2244
                                    }
                                    TraitItemKind::Macro(_) => {
                                        panic!("unexpanded macro in resolve!")
                                    }
                                };
                            });
2245 2246
                        }
                    });
2247
                });
2248 2249
            }

A
Alex Burka 已提交
2250 2251 2252 2253 2254 2255
            ItemKind::TraitAlias(ref generics, ref bounds) => {
                // Create a new rib for the trait-wide type parameters.
                self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind), |this| {
                    let local_def_id = this.definitions.local_def_id(item.id);
                    this.with_self_rib(Def::SelfTy(Some(local_def_id), None), |this| {
                        this.visit_generics(generics);
V
varkor 已提交
2256
                        walk_list!(this, visit_param_bound, bounds);
A
Alex Burka 已提交
2257 2258 2259 2260
                    });
                });
            }

2261
            ItemKind::Mod(_) | ItemKind::ForeignMod(_) => {
2262
                self.with_scope(item.id, |this| {
2263
                    visit::walk_item(this, item);
2264
                });
2265 2266
            }

2267 2268 2269 2270 2271 2272 2273
            ItemKind::Static(ref ty, _, ref expr) |
            ItemKind::Const(ref ty, ref expr) => {
                self.with_item_rib(|this| {
                    this.visit_ty(ty);
                    this.with_constant_rib(|this| {
                        this.visit_expr(expr);
                    });
2274
                });
2275
            }
2276

2277
            ItemKind::Use(ref use_tree) => {
2278
                // Imports are resolved as global by default, add starting root segment.
2279
                let path = Path {
2280
                    segments: use_tree.prefix.make_root().into_iter().collect(),
2281 2282
                    span: use_tree.span,
                };
2283
                self.resolve_use_tree(item.id, use_tree.span, item.id, use_tree, &path);
W
we 已提交
2284 2285
            }

2286
            ItemKind::ExternCrate(_) | ItemKind::MacroDef(..) | ItemKind::GlobalAsm(_) => {
2287
                // do nothing, these are just around to be encoded
2288
            }
2289 2290

            ItemKind::Mac(_) => panic!("unexpanded macro in resolve!"),
2291 2292 2293
        }
    }

2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305
    /// For the most part, use trees are desugared into `ImportDirective` instances
    /// when building the reduced graph (see `build_reduced_graph_for_use_tree`). But
    /// there is one special case we handle here: an empty nested import like
    /// `a::{b::{}}`, which desugares into...no import directives.
    fn resolve_use_tree(
        &mut self,
        root_id: NodeId,
        root_span: Span,
        id: NodeId,
        use_tree: &ast::UseTree,
        prefix: &Path,
    ) {
2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318
        match use_tree.kind {
            ast::UseTreeKind::Nested(ref items) => {
                let path = Path {
                    segments: prefix.segments
                        .iter()
                        .chain(use_tree.prefix.segments.iter())
                        .cloned()
                        .collect(),
                    span: prefix.span.to(use_tree.prefix.span),
                };

                if items.len() == 0 {
                    // Resolve prefix of an import with empty braces (issue #28388).
2319 2320 2321 2322 2323
                    self.smart_resolve_path_with_crate_lint(
                        id,
                        None,
                        &path,
                        PathSource::ImportPrefix,
2324
                        CrateLint::UsePath { root_id, root_span },
2325
                    );
2326
                } else {
2327
                    for &(ref tree, nested_id) in items {
2328
                        self.resolve_use_tree(root_id, root_span, nested_id, tree, &path);
2329 2330 2331
                    }
                }
            }
2332
            ast::UseTreeKind::Simple(..) => {},
2333 2334 2335 2336
            ast::UseTreeKind::Glob => {},
        }
    }

2337
    fn with_type_parameter_rib<'b, F>(&'b mut self, type_parameters: TypeParameters<'a, 'b>, f: F)
C
corentih 已提交
2338
        where F: FnOnce(&mut Resolver)
J
Jorge Aparicio 已提交
2339
    {
2340
        match type_parameters {
2341
            HasTypeParameters(generics, rib_kind) => {
2342
                let mut function_type_rib = Rib::new(rib_kind);
2343
                let mut seen_bindings = FxHashMap();
V
varkor 已提交
2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359
                for param in &generics.params {
                    match param.kind {
                        GenericParamKind::Lifetime { .. } => {}
                        GenericParamKind::Type { .. } => {
                            let ident = param.ident.modern();
                            debug!("with_type_parameter_rib: {}", param.id);

                            if seen_bindings.contains_key(&ident) {
                                let span = seen_bindings.get(&ident).unwrap();
                                let err = ResolutionError::NameAlreadyUsedInTypeParameterList(
                                    ident.name,
                                    span,
                                );
                                resolve_error(self, param.ident.span, err);
                            }
                            seen_bindings.entry(ident).or_insert(param.ident.span);
V
varkor 已提交
2360

V
varkor 已提交
2361
                        // Plain insert (no renaming).
2362
                        let def = Def::TyParam(self.definitions.local_def_id(param.id));
V
varkor 已提交
2363 2364 2365
                            function_type_rib.bindings.insert(ident, def);
                            self.record_def(param.id, PathResolution::new(def));
                        }
V
varkor 已提交
2366
                    }
V
varkor 已提交
2367
                }
J
Jeffrey Seyfried 已提交
2368
                self.ribs[TypeNS].push(function_type_rib);
2369 2370
            }

B
Brian Anderson 已提交
2371
            NoTypeParameters => {
2372 2373 2374 2375
                // Nothing to do.
            }
        }

A
Alex Crichton 已提交
2376
        f(self);
2377

J
Jeffrey Seyfried 已提交
2378
        if let HasTypeParameters(..) = type_parameters {
J
Jeffrey Seyfried 已提交
2379
            self.ribs[TypeNS].pop();
2380 2381 2382
        }
    }

C
corentih 已提交
2383 2384
    fn with_label_rib<F>(&mut self, f: F)
        where F: FnOnce(&mut Resolver)
J
Jorge Aparicio 已提交
2385
    {
2386
        self.label_ribs.push(Rib::new(NormalRibKind));
A
Alex Crichton 已提交
2387
        f(self);
J
Jeffrey Seyfried 已提交
2388
        self.label_ribs.pop();
2389
    }
2390

2391 2392 2393 2394 2395 2396 2397 2398 2399 2400
    fn with_item_rib<F>(&mut self, f: F)
        where F: FnOnce(&mut Resolver)
    {
        self.ribs[ValueNS].push(Rib::new(ItemRibKind));
        self.ribs[TypeNS].push(Rib::new(ItemRibKind));
        f(self);
        self.ribs[TypeNS].pop();
        self.ribs[ValueNS].pop();
    }

C
corentih 已提交
2401 2402
    fn with_constant_rib<F>(&mut self, f: F)
        where F: FnOnce(&mut Resolver)
J
Jorge Aparicio 已提交
2403
    {
J
Jeffrey Seyfried 已提交
2404
        self.ribs[ValueNS].push(Rib::new(ConstantItemRibKind));
2405
        self.label_ribs.push(Rib::new(ConstantItemRibKind));
A
Alex Crichton 已提交
2406
        f(self);
2407
        self.label_ribs.pop();
J
Jeffrey Seyfried 已提交
2408
        self.ribs[ValueNS].pop();
2409 2410
    }

2411 2412
    fn with_current_self_type<T, F>(&mut self, self_type: &Ty, f: F) -> T
        where F: FnOnce(&mut Resolver) -> T
J
Jorge Aparicio 已提交
2413
    {
2414 2415 2416 2417 2418 2419 2420
        // Handle nested impls (inside fn bodies)
        let previous_value = replace(&mut self.current_self_type, Some(self_type.clone()));
        let result = f(self);
        self.current_self_type = previous_value;
        result
    }

2421
    /// This is called to resolve a trait reference from an `impl` (i.e. `impl Trait for Foo`)
2422
    fn with_optional_trait_ref<T, F>(&mut self, opt_trait_ref: Option<&TraitRef>, f: F) -> T
2423
        where F: FnOnce(&mut Resolver, Option<DefId>) -> T
J
Jorge Aparicio 已提交
2424
    {
2425
        let mut new_val = None;
2426
        let mut new_id = None;
E
Eduard Burtescu 已提交
2427
        if let Some(trait_ref) = opt_trait_ref {
2428
            let path: Vec<_> = trait_ref.path.segments.iter()
V
Vadim Petrochenkov 已提交
2429
                .map(|seg| seg.ident)
2430
                .collect();
2431 2432 2433 2434 2435
            let def = self.smart_resolve_path_fragment(
                trait_ref.ref_id,
                None,
                &path,
                trait_ref.path.span,
2436 2437
                PathSource::Trait(AliasPossibility::No),
                CrateLint::SimplePath(trait_ref.ref_id),
2438
            ).base_def();
2439 2440
            if def != Def::Err {
                new_id = Some(def.def_id());
2441
                let span = trait_ref.path.span;
2442 2443 2444 2445 2446 2447 2448 2449 2450 2451
                if let PathResult::Module(ModuleOrUniformRoot::Module(module)) =
                    self.resolve_path(
                        None,
                        &path,
                        None,
                        false,
                        span,
                        CrateLint::SimplePath(trait_ref.ref_id),
                    )
                {
2452 2453
                    new_val = Some((module, trait_ref.clone()));
                }
2454
            }
2455
        }
2456
        let original_trait_ref = replace(&mut self.current_trait_ref, new_val);
2457
        let result = f(self, new_id);
2458 2459 2460 2461
        self.current_trait_ref = original_trait_ref;
        result
    }

2462 2463 2464 2465 2466 2467
    fn with_self_rib<F>(&mut self, self_def: Def, f: F)
        where F: FnOnce(&mut Resolver)
    {
        let mut self_type_rib = Rib::new(NormalRibKind);

        // plain insert (no renaming, types are not currently hygienic....)
2468
        self_type_rib.bindings.insert(keywords::SelfType.ident(), self_def);
J
Jeffrey Seyfried 已提交
2469
        self.ribs[TypeNS].push(self_type_rib);
2470
        f(self);
J
Jeffrey Seyfried 已提交
2471
        self.ribs[TypeNS].pop();
2472 2473
    }

F
Felix S. Klock II 已提交
2474
    fn resolve_implementation(&mut self,
2475 2476 2477
                              generics: &Generics,
                              opt_trait_reference: &Option<TraitRef>,
                              self_type: &Ty,
2478
                              item_id: NodeId,
2479
                              impl_items: &[ImplItem]) {
2480
        // If applicable, create a rib for the type parameters.
2481
        self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind), |this| {
2482 2483 2484 2485 2486 2487 2488
            // Dummy self type for better errors if `Self` is used in the trait path.
            this.with_self_rib(Def::SelfTy(None, None), |this| {
                // Resolve the trait reference, if necessary.
                this.with_optional_trait_ref(opt_trait_reference.as_ref(), |this, trait_id| {
                    let item_def_id = this.definitions.local_def_id(item_id);
                    this.with_self_rib(Def::SelfTy(trait_id, Some(item_def_id)), |this| {
                        if let Some(trait_ref) = opt_trait_reference.as_ref() {
2489
                            // Resolve type arguments in the trait path.
2490 2491 2492 2493 2494 2495
                            visit::walk_trait_ref(this, trait_ref);
                        }
                        // Resolve the self type.
                        this.visit_ty(self_type);
                        // Resolve the type parameters.
                        this.visit_generics(generics);
2496
                        // Resolve the items within the impl.
2497 2498 2499 2500
                        this.with_current_self_type(self_type, |this| {
                            for impl_item in impl_items {
                                this.resolve_visibility(&impl_item.vis);

2501 2502 2503 2504 2505 2506 2507 2508 2509 2510
                                // We also need a new scope for the impl item type parameters.
                                let type_parameters = HasTypeParameters(&impl_item.generics,
                                                                        TraitOrImplItemRibKind);
                                this.with_type_parameter_rib(type_parameters, |this| {
                                    use self::ResolutionError::*;
                                    match impl_item.node {
                                        ImplItemKind::Const(..) => {
                                            // If this is a trait impl, ensure the const
                                            // exists in trait
                                            this.check_trait_item(impl_item.ident,
2511 2512
                                                                  ValueNS,
                                                                  impl_item.span,
2513 2514 2515 2516 2517
                                                |n, s| ConstNotMemberOfTrait(n, s));
                                            this.with_constant_rib(|this|
                                                visit::walk_impl_item(this, impl_item)
                                            );
                                        }
T
Taylor Cramer 已提交
2518
                                        ImplItemKind::Method(..) => {
2519 2520 2521
                                            // If this is a trait impl, ensure the method
                                            // exists in trait
                                            this.check_trait_item(impl_item.ident,
2522 2523
                                                                  ValueNS,
                                                                  impl_item.span,
2524 2525
                                                |n, s| MethodNotMemberOfTrait(n, s));

2526
                                            visit::walk_impl_item(this, impl_item);
2527 2528 2529 2530 2531
                                        }
                                        ImplItemKind::Type(ref ty) => {
                                            // If this is a trait impl, ensure the type
                                            // exists in trait
                                            this.check_trait_item(impl_item.ident,
2532 2533
                                                                  TypeNS,
                                                                  impl_item.span,
2534 2535
                                                |n, s| TypeNotMemberOfTrait(n, s));

2536
                                            this.visit_ty(ty);
2537
                                        }
O
Oliver Schneider 已提交
2538 2539 2540 2541
                                        ImplItemKind::Existential(ref bounds) => {
                                            // If this is a trait impl, ensure the type
                                            // exists in trait
                                            this.check_trait_item(impl_item.ident,
2542 2543
                                                                  TypeNS,
                                                                  impl_item.span,
O
Oliver Schneider 已提交
2544 2545 2546 2547 2548 2549
                                                |n, s| TypeNotMemberOfTrait(n, s));

                                            for bound in bounds {
                                                this.visit_param_bound(bound);
                                            }
                                        }
2550 2551
                                        ImplItemKind::Macro(_) =>
                                            panic!("unexpanded macro in resolve!"),
2552
                                    }
2553
                                });
2554
                            }
2555
                        });
2556
                    });
2557
                });
2558
            });
2559
        });
2560 2561
    }

2562
    fn check_trait_item<F>(&mut self, ident: Ident, ns: Namespace, span: Span, err: F)
C
corentih 已提交
2563 2564 2565 2566
        where F: FnOnce(Name, &str) -> ResolutionError
    {
        // If there is a TraitRef in scope for an impl, then the method must be in the
        // trait.
2567
        if let Some((module, _)) = self.current_trait_ref {
2568 2569 2570 2571 2572 2573 2574
            if self.resolve_ident_in_module(
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                span,
            ).is_err() {
2575 2576
                let path = &self.current_trait_ref.as_ref().unwrap().1.path;
                resolve_error(self, span, err(ident.name, &path_names_to_string(path)));
2577 2578 2579 2580
            }
        }
    }

E
Eduard Burtescu 已提交
2581
    fn resolve_local(&mut self, local: &Local) {
2582
        // Resolve the type.
2583
        walk_list!(self, visit_ty, &local.ty);
2584

2585
        // Resolve the initializer.
2586
        walk_list!(self, visit_expr, &local.init);
2587 2588

        // Resolve the pattern.
2589
        self.resolve_pattern(&local.pat, PatternSource::Let, &mut FxHashMap());
2590 2591
    }

J
John Clements 已提交
2592 2593 2594 2595
    // build a map from pattern identifiers to binding-info's.
    // this is done hygienically. This could arise for a macro
    // that expands into an or-pattern where one 'x' was from the
    // user and one 'x' came from the macro.
E
Eduard Burtescu 已提交
2596
    fn binding_mode_map(&mut self, pat: &Pat) -> BindingMap {
2597
        let mut binding_map = FxHashMap();
2598 2599 2600

        pat.walk(&mut |pat| {
            if let PatKind::Ident(binding_mode, ident, ref sub_pat) = pat.node {
2601 2602
                if sub_pat.is_some() || match self.def_map.get(&pat.id).map(|res| res.base_def()) {
                    Some(Def::Local(..)) => true,
2603 2604 2605
                    _ => false,
                } {
                    let binding_info = BindingInfo { span: ident.span, binding_mode: binding_mode };
V
Vadim Petrochenkov 已提交
2606
                    binding_map.insert(ident, binding_info);
2607 2608 2609
                }
            }
            true
2610
        });
2611 2612

        binding_map
2613 2614
    }

J
John Clements 已提交
2615 2616
    // check that all of the arms in an or-pattern have exactly the
    // same set of bindings, with the same binding modes for each.
2617 2618
    fn check_consistent_bindings(&mut self, pats: &[P<Pat>]) {
        if pats.is_empty() {
C
corentih 已提交
2619
            return;
2620
        }
2621 2622 2623

        let mut missing_vars = FxHashMap();
        let mut inconsistent_vars = FxHashMap();
2624
        for (i, p) in pats.iter().enumerate() {
J
Jonas Schievink 已提交
2625
            let map_i = self.binding_mode_map(&p);
2626

2627
            for (j, q) in pats.iter().enumerate() {
2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638
                if i == j {
                    continue;
                }

                let map_j = self.binding_mode_map(&q);
                for (&key, &binding_i) in &map_i {
                    if map_j.len() == 0 {                   // Account for missing bindings when
                        let binding_error = missing_vars    // map_j has none.
                            .entry(key.name)
                            .or_insert(BindingError {
                                name: key.name,
2639 2640
                                origin: BTreeSet::new(),
                                target: BTreeSet::new(),
2641 2642 2643
                            });
                        binding_error.origin.insert(binding_i.span);
                        binding_error.target.insert(q.span);
C
corentih 已提交
2644
                    }
2645 2646 2647 2648 2649 2650 2651
                    for (&key_j, &binding_j) in &map_j {
                        match map_i.get(&key_j) {
                            None => {  // missing binding
                                let binding_error = missing_vars
                                    .entry(key_j.name)
                                    .or_insert(BindingError {
                                        name: key_j.name,
2652 2653
                                        origin: BTreeSet::new(),
                                        target: BTreeSet::new(),
2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664
                                    });
                                binding_error.origin.insert(binding_j.span);
                                binding_error.target.insert(p.span);
                            }
                            Some(binding_i) => {  // check consistent binding
                                if binding_i.binding_mode != binding_j.binding_mode {
                                    inconsistent_vars
                                        .entry(key.name)
                                        .or_insert((binding_j.span, binding_i.span));
                                }
                            }
C
corentih 已提交
2665
                        }
2666
                    }
2667 2668
                }
            }
2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680
        }
        let mut missing_vars = missing_vars.iter().collect::<Vec<_>>();
        missing_vars.sort();
        for (_, v) in missing_vars {
            resolve_error(self,
                          *v.origin.iter().next().unwrap(),
                          ResolutionError::VariableNotBoundInPattern(v));
        }
        let mut inconsistent_vars = inconsistent_vars.iter().collect::<Vec<_>>();
        inconsistent_vars.sort();
        for (name, v) in inconsistent_vars {
            resolve_error(self, v.0, ResolutionError::VariableBoundWithDifferentMode(*name, v.1));
2681
        }
2682 2683
    }

F
Felix S. Klock II 已提交
2684
    fn resolve_arm(&mut self, arm: &Arm) {
J
Jeffrey Seyfried 已提交
2685
        self.ribs[ValueNS].push(Rib::new(NormalRibKind));
2686

2687
        let mut bindings_list = FxHashMap();
2688
        for pattern in &arm.pats {
2689
            self.resolve_pattern(&pattern, PatternSource::Match, &mut bindings_list);
2690 2691
        }

2692 2693
        // This has to happen *after* we determine which pat_idents are variants
        self.check_consistent_bindings(&arm.pats);
2694

2695
        walk_list!(self, visit_expr, &arm.guard);
J
Jonas Schievink 已提交
2696
        self.visit_expr(&arm.body);
2697

J
Jeffrey Seyfried 已提交
2698
        self.ribs[ValueNS].pop();
2699 2700
    }

E
Eduard Burtescu 已提交
2701
    fn resolve_block(&mut self, block: &Block) {
2702
        debug!("(resolving block) entering block");
2703
        // Move down in the graph, if there's an anonymous module rooted here.
2704
        let orig_module = self.current_module;
2705
        let anonymous_module = self.block_map.get(&block.id).cloned(); // clones a reference
2706

2707
        let mut num_macro_definition_ribs = 0;
2708 2709
        if let Some(anonymous_module) = anonymous_module {
            debug!("(resolving block) found anonymous module, moving down");
J
Jeffrey Seyfried 已提交
2710 2711
            self.ribs[ValueNS].push(Rib::new(ModuleRibKind(anonymous_module)));
            self.ribs[TypeNS].push(Rib::new(ModuleRibKind(anonymous_module)));
2712
            self.current_module = anonymous_module;
2713
            self.finalize_current_module_macro_resolutions();
2714
        } else {
J
Jeffrey Seyfried 已提交
2715
            self.ribs[ValueNS].push(Rib::new(NormalRibKind));
2716 2717 2718
        }

        // Descend into the block.
2719
        for stmt in &block.stmts {
2720
            if let ast::StmtKind::Item(ref item) = stmt.node {
2721
                if let ast::ItemKind::MacroDef(..) = item.node {
2722
                    num_macro_definition_ribs += 1;
2723 2724 2725
                    let def = self.definitions.local_def_id(item.id);
                    self.ribs[ValueNS].push(Rib::new(MacroDefinition(def)));
                    self.label_ribs.push(Rib::new(MacroDefinition(def)));
2726 2727 2728 2729 2730
                }
            }

            self.visit_stmt(stmt);
        }
2731 2732

        // Move back up.
J
Jeffrey Seyfried 已提交
2733
        self.current_module = orig_module;
2734
        for _ in 0 .. num_macro_definition_ribs {
J
Jeffrey Seyfried 已提交
2735
            self.ribs[ValueNS].pop();
2736
            self.label_ribs.pop();
2737
        }
J
Jeffrey Seyfried 已提交
2738
        self.ribs[ValueNS].pop();
2739
        if anonymous_module.is_some() {
J
Jeffrey Seyfried 已提交
2740
            self.ribs[TypeNS].pop();
G
Garming Sam 已提交
2741
        }
2742
        debug!("(resolving block) leaving block");
2743 2744
    }

2745
    fn fresh_binding(&mut self,
V
Vadim Petrochenkov 已提交
2746
                     ident: Ident,
2747 2748 2749
                     pat_id: NodeId,
                     outer_pat_id: NodeId,
                     pat_src: PatternSource,
2750
                     bindings: &mut FxHashMap<Ident, NodeId>)
2751 2752
                     -> PathResolution {
        // Add the binding to the local ribs, if it
2753 2754
        // doesn't already exist in the bindings map. (We
        // must not add it if it's in the bindings map
2755 2756
        // because that breaks the assumptions later
        // passes make about or-patterns.)
2757
        let ident = ident.modern_and_legacy();
2758
        let mut def = Def::Local(pat_id);
V
Vadim Petrochenkov 已提交
2759
        match bindings.get(&ident).cloned() {
2760 2761 2762 2763 2764 2765
            Some(id) if id == outer_pat_id => {
                // `Variant(a, a)`, error
                resolve_error(
                    self,
                    ident.span,
                    ResolutionError::IdentifierBoundMoreThanOnceInSamePattern(
V
Vadim Petrochenkov 已提交
2766
                        &ident.as_str())
2767 2768 2769 2770 2771 2772 2773 2774
                );
            }
            Some(..) if pat_src == PatternSource::FnParam => {
                // `fn f(a: u8, a: u8)`, error
                resolve_error(
                    self,
                    ident.span,
                    ResolutionError::IdentifierBoundMoreThanOnceInParameterList(
V
Vadim Petrochenkov 已提交
2775
                        &ident.as_str())
2776 2777
                );
            }
2778 2779 2780
            Some(..) if pat_src == PatternSource::Match ||
                        pat_src == PatternSource::IfLet ||
                        pat_src == PatternSource::WhileLet => {
2781 2782
                // `Variant1(a) | Variant2(a)`, ok
                // Reuse definition from the first `a`.
V
Vadim Petrochenkov 已提交
2783
                def = self.ribs[ValueNS].last_mut().unwrap().bindings[&ident];
2784 2785 2786 2787 2788 2789
            }
            Some(..) => {
                span_bug!(ident.span, "two bindings with the same name from \
                                       unexpected pattern source {:?}", pat_src);
            }
            None => {
2790
                // A completely fresh binding, add to the lists if it's valid.
V
Vadim Petrochenkov 已提交
2791 2792 2793
                if ident.name != keywords::Invalid.name() {
                    bindings.insert(ident, outer_pat_id);
                    self.ribs[ValueNS].last_mut().unwrap().bindings.insert(ident, def);
2794
                }
2795
            }
2796
        }
2797

2798
        PathResolution::new(def)
2799
    }
2800

2801 2802 2803 2804 2805
    fn resolve_pattern(&mut self,
                       pat: &Pat,
                       pat_src: PatternSource,
                       // Maps idents to the node ID for the
                       // outermost pattern that binds them.
2806
                       bindings: &mut FxHashMap<Ident, NodeId>) {
2807
        // Visit all direct subpatterns of this pattern.
2808 2809 2810
        let outer_pat_id = pat.id;
        pat.walk(&mut |pat| {
            match pat.node {
V
Vadim Petrochenkov 已提交
2811
                PatKind::Ident(bmode, ident, ref opt_pat) => {
2812 2813
                    // First try to resolve the identifier as some existing
                    // entity, then fall back to a fresh binding.
V
Vadim Petrochenkov 已提交
2814
                    let binding = self.resolve_ident_in_lexical_scope(ident, ValueNS,
2815
                                                                      None, pat.span)
2816
                                      .and_then(LexicalScopeBinding::item);
2817
                    let resolution = binding.map(NameBinding::def).and_then(|def| {
2818 2819
                        let is_syntactic_ambiguity = opt_pat.is_none() &&
                            bmode == BindingMode::ByValue(Mutability::Immutable);
2820
                        match def {
2821 2822
                            Def::StructCtor(_, CtorKind::Const) |
                            Def::VariantCtor(_, CtorKind::Const) |
2823 2824 2825
                            Def::Const(..) if is_syntactic_ambiguity => {
                                // Disambiguate in favor of a unit struct/variant
                                // or constant pattern.
V
Vadim Petrochenkov 已提交
2826
                                self.record_use(ident, ValueNS, binding.unwrap(), ident.span);
2827
                                Some(PathResolution::new(def))
2828
                            }
2829
                            Def::StructCtor(..) | Def::VariantCtor(..) |
2830
                            Def::Const(..) | Def::Static(..) => {
2831 2832 2833 2834 2835
                                // This is unambiguously a fresh binding, either syntactically
                                // (e.g. `IDENT @ PAT` or `ref IDENT`) or because `IDENT` resolves
                                // to something unusable as a pattern (e.g. constructor function),
                                // but we still conservatively report an error, see
                                // issues/33118#issuecomment-233962221 for one reason why.
2836
                                resolve_error(
2837
                                    self,
2838 2839
                                    ident.span,
                                    ResolutionError::BindingShadowsSomethingUnacceptable(
V
Vadim Petrochenkov 已提交
2840
                                        pat_src.descr(), ident.name, binding.unwrap())
2841
                                );
2842
                                None
2843
                            }
2844
                            Def::Fn(..) | Def::Err => {
2845 2846
                                // These entities are explicitly allowed
                                // to be shadowed by fresh bindings.
2847
                                None
2848 2849 2850
                            }
                            def => {
                                span_bug!(ident.span, "unexpected definition for an \
2851
                                                       identifier in pattern: {:?}", def);
2852
                            }
2853
                        }
2854
                    }).unwrap_or_else(|| {
2855
                        self.fresh_binding(ident, pat.id, outer_pat_id, pat_src, bindings)
2856
                    });
2857 2858

                    self.record_def(pat.id, resolution);
2859 2860
                }

2861
                PatKind::TupleStruct(ref path, ..) => {
2862
                    self.smart_resolve_path(pat.id, None, path, PathSource::TupleStruct);
2863 2864
                }

2865
                PatKind::Path(ref qself, ref path) => {
2866
                    self.smart_resolve_path(pat.id, qself.as_ref(), path, PathSource::Pat);
2867 2868
                }

V
Vadim Petrochenkov 已提交
2869
                PatKind::Struct(ref path, ..) => {
2870
                    self.smart_resolve_path(pat.id, None, path, PathSource::Struct);
2871
                }
2872 2873

                _ => {}
2874
            }
2875
            true
2876
        });
2877

2878
        visit::walk_pat(self, pat);
2879 2880
    }

2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891
    // High-level and context dependent path resolution routine.
    // Resolves the path and records the resolution into definition map.
    // If resolution fails tries several techniques to find likely
    // resolution candidates, suggest imports or other help, and report
    // errors in user friendly way.
    fn smart_resolve_path(&mut self,
                          id: NodeId,
                          qself: Option<&QSelf>,
                          path: &Path,
                          source: PathSource)
                          -> PathResolution {
2892 2893 2894 2895 2896 2897
        self.smart_resolve_path_with_crate_lint(id, qself, path, source, CrateLint::SimplePath(id))
    }

    /// A variant of `smart_resolve_path` where you also specify extra
    /// information about where the path came from; this extra info is
    /// sometimes needed for the lint that recommends rewriting
T
Takanori Ishibashi 已提交
2898
    /// absolute paths to `crate`, so that it knows how to frame the
2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910
    /// suggestion. If you are just resolving a path like `foo::bar`
    /// that appears...somewhere, though, then you just want
    /// `CrateLint::SimplePath`, which is what `smart_resolve_path`
    /// already provides.
    fn smart_resolve_path_with_crate_lint(
        &mut self,
        id: NodeId,
        qself: Option<&QSelf>,
        path: &Path,
        source: PathSource,
        crate_lint: CrateLint
    ) -> PathResolution {
2911
        let segments = &path.segments.iter()
V
Vadim Petrochenkov 已提交
2912
            .map(|seg| seg.ident)
2913
            .collect::<Vec<_>>();
2914
        self.smart_resolve_path_fragment(id, qself, segments, path.span, source, crate_lint)
2915 2916 2917
    }

    fn smart_resolve_path_fragment(&mut self,
2918
                                   id: NodeId,
2919
                                   qself: Option<&QSelf>,
V
Vadim Petrochenkov 已提交
2920
                                   path: &[Ident],
2921
                                   span: Span,
2922 2923
                                   source: PathSource,
                                   crate_lint: CrateLint)
2924
                                   -> PathResolution {
2925
        let ident_span = path.last().map_or(span, |ident| ident.span);
2926 2927
        let ns = source.namespace();
        let is_expected = &|def| source.is_expected(def);
2928
        let is_enum_variant = &|def| if let Def::Variant(..) = def { true } else { false };
2929 2930 2931 2932 2933 2934 2935

        // Base error is amended with one short label and possibly some longer helps/notes.
        let report_errors = |this: &mut Self, def: Option<Def>| {
            // Make the base error.
            let expected = source.descr_expected();
            let path_str = names_to_string(path);
            let code = source.error_code(def.is_some());
2936
            let (base_msg, fallback_label, base_span) = if let Some(def) = def {
2937
                (format!("expected {}, found {} `{}`", expected, def.kind_name(), path_str),
2938 2939
                 format!("not a {}", expected),
                 span)
2940
            } else {
V
Vadim Petrochenkov 已提交
2941
                let item_str = path[path.len() - 1];
2942
                let item_span = path[path.len() - 1].span;
2943
                let (mod_prefix, mod_str) = if path.len() == 1 {
L
ljedrz 已提交
2944
                    (String::new(), "this scope".to_string())
V
Vadim Petrochenkov 已提交
2945
                } else if path.len() == 2 && path[0].name == keywords::CrateRoot.name() {
L
ljedrz 已提交
2946
                    (String::new(), "the crate root".to_string())
2947 2948
                } else {
                    let mod_path = &path[..path.len() - 1];
2949
                    let mod_prefix = match this.resolve_path(None, mod_path, Some(TypeNS),
2950
                                                             false, span, CrateLint::No) {
2951 2952
                        PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
                            module.def(),
2953
                        _ => None,
L
ljedrz 已提交
2954
                    }.map_or(String::new(), |def| format!("{} ", def.kind_name()));
2955 2956 2957
                    (mod_prefix, format!("`{}`", names_to_string(mod_path)))
                };
                (format!("cannot find {} `{}` in {}{}", expected, item_str, mod_prefix, mod_str),
2958 2959
                 format!("not found in {}", mod_str),
                 item_span)
2960
            };
2961
            let code = DiagnosticId::Error(code.into());
2962
            let mut err = this.session.struct_span_err_with_code(base_span, &base_msg, code);
2963 2964 2965 2966

            // Emit special messages for unresolved `Self` and `self`.
            if is_self_type(path, ns) {
                __diagnostic_used!(E0411);
2967
                err.code(DiagnosticId::Error("E0411".into()));
A
Alexander Regueiro 已提交
2968 2969 2970 2971 2972 2973
                let available_in = if this.session.features_untracked().self_in_typedefs {
                    "impls, traits, and type definitions"
                } else {
                    "traits and impls"
                };
                err.span_label(span, format!("`Self` is only available in {}", available_in));
2974
                return (err, Vec::new());
2975 2976 2977
            }
            if is_self_value(path, ns) {
                __diagnostic_used!(E0424);
2978
                err.code(DiagnosticId::Error("E0424".into()));
2979
                err.span_label(span, format!("`self` value is only available in \
2980
                                               methods with `self` parameter"));
2981
                return (err, Vec::new());
2982 2983 2984
            }

            // Try to lookup the name in more relaxed fashion for better error reporting.
2985
            let ident = *path.last().unwrap();
V
Vadim Petrochenkov 已提交
2986
            let candidates = this.lookup_import_candidates(ident.name, ns, is_expected);
2987
            if candidates.is_empty() && is_expected(Def::Enum(DefId::local(CRATE_DEF_INDEX))) {
2988
                let enum_candidates =
V
Vadim Petrochenkov 已提交
2989
                    this.lookup_import_candidates(ident.name, ns, is_enum_variant);
E
Esteban Küber 已提交
2990 2991 2992 2993
                let mut enum_candidates = enum_candidates.iter()
                    .map(|suggestion| import_candidate_to_paths(&suggestion)).collect::<Vec<_>>();
                enum_candidates.sort();
                for (sp, variant_path, enum_path) in enum_candidates {
V
Vadim Petrochenkov 已提交
2994
                    if sp.is_dummy() {
2995 2996 2997 2998
                        let msg = format!("there is an enum variant `{}`, \
                                        try using `{}`?",
                                        variant_path,
                                        enum_path);
2999 3000
                        err.help(&msg);
                    } else {
3001 3002
                        err.span_suggestion(span, "you can try using the variant's enum",
                                            enum_path);
3003 3004
                    }
                }
3005
            }
3006
            if path.len() == 1 && this.self_type_is_available(span) {
V
Vadim Petrochenkov 已提交
3007 3008
                if let Some(candidate) = this.lookup_assoc_candidate(ident, ns, is_expected) {
                    let self_is_available = this.self_value_is_available(path[0].span, span);
3009 3010
                    match candidate {
                        AssocSuggestion::Field => {
3011 3012
                            err.span_suggestion(span, "try",
                                                format!("self.{}", path_str));
3013
                            if !self_is_available {
3014
                                err.span_label(span, format!("`self` value is only available in \
3015 3016 3017 3018
                                                               methods with `self` parameter"));
                            }
                        }
                        AssocSuggestion::MethodWithSelf if self_is_available => {
3019 3020
                            err.span_suggestion(span, "try",
                                                format!("self.{}", path_str));
3021 3022
                        }
                        AssocSuggestion::MethodWithSelf | AssocSuggestion::AssocItem => {
3023 3024
                            err.span_suggestion(span, "try",
                                                format!("Self::{}", path_str));
3025 3026
                        }
                    }
3027
                    return (err, candidates);
3028 3029 3030
                }
            }

3031 3032 3033
            let mut levenshtein_worked = false;

            // Try Levenshtein.
3034
            if let Some(candidate) = this.lookup_typo_candidate(path, ns, is_expected, span) {
3035
                err.span_label(ident_span, format!("did you mean `{}`?", candidate));
3036 3037 3038
                levenshtein_worked = true;
            }

3039 3040 3041 3042
            // Try context dependent help if relaxed lookup didn't work.
            if let Some(def) = def {
                match (def, source) {
                    (Def::Macro(..), _) => {
3043
                        err.span_label(span, format!("did you mean `{}!(...)`?", path_str));
3044
                        return (err, candidates);
3045
                    }
A
Alex Burka 已提交
3046
                    (Def::TyAlias(..), PathSource::Trait(_)) => {
3047
                        err.span_label(span, "type aliases cannot be used for traits");
3048
                        return (err, candidates);
3049
                    }
3050
                    (Def::Mod(..), PathSource::Expr(Some(parent))) => match parent.node {
3051
                        ExprKind::Field(_, ident) => {
3052
                            err.span_label(parent.span, format!("did you mean `{}::{}`?",
V
Vadim Petrochenkov 已提交
3053
                                                                 path_str, ident));
3054
                            return (err, candidates);
3055
                        }
3056
                        ExprKind::MethodCall(ref segment, ..) => {
3057
                            err.span_label(parent.span, format!("did you mean `{}::{}(...)`?",
3058
                                                                 path_str, segment.ident));
3059
                            return (err, candidates);
3060 3061 3062
                        }
                        _ => {}
                    },
3063 3064
                    (Def::Enum(..), PathSource::TupleStruct)
                        | (Def::Enum(..), PathSource::Expr(..))  => {
3065 3066 3067 3068
                        if let Some(variants) = this.collect_enum_variants(def) {
                            err.note(&format!("did you mean to use one \
                                               of the following variants?\n{}",
                                variants.iter()
3069 3070
                                    .map(|suggestion| path_names_to_string(suggestion))
                                    .map(|suggestion| format!("- `{}`", suggestion))
3071 3072 3073 3074 3075 3076 3077 3078
                                    .collect::<Vec<_>>()
                                    .join("\n")));

                        } else {
                            err.note("did you mean to use one of the enum's variants?");
                        }
                        return (err, candidates);
                    },
E
Esteban Küber 已提交
3079
                    (Def::Struct(def_id), _) if ns == ValueNS => {
3080 3081 3082 3083 3084 3085
                        if let Some((ctor_def, ctor_vis))
                                = this.struct_constructors.get(&def_id).cloned() {
                            let accessible_ctor = this.is_accessible(ctor_vis);
                            if is_expected(ctor_def) && !accessible_ctor {
                                err.span_label(span, format!("constructor is not visible \
                                                              here due to private fields"));
3086
                            }
3087
                        } else {
3088 3089 3090 3091
                            // HACK(estebank): find a better way to figure out that this was a
                            // parser issue where a struct literal is being used on an expression
                            // where a brace being opened means a block is being started. Look
                            // ahead for the next text to see if `span` is followed by a `{`.
D
Donato Sciarra 已提交
3092
                            let cm = this.session.source_map();
3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119
                            let mut sp = span;
                            loop {
                                sp = cm.next_point(sp);
                                match cm.span_to_snippet(sp) {
                                    Ok(ref snippet) => {
                                        if snippet.chars().any(|c| { !c.is_whitespace() }) {
                                            break;
                                        }
                                    }
                                    _ => break,
                                }
                            }
                            let followed_by_brace = match cm.span_to_snippet(sp) {
                                Ok(ref snippet) if snippet == "{" => true,
                                _ => false,
                            };
                            if let (PathSource::Expr(None), true) = (source, followed_by_brace) {
                                err.span_label(
                                    span,
                                    format!("did you mean `({} {{ /* fields */ }})`?", path_str),
                                );
                            } else {
                                err.span_label(
                                    span,
                                    format!("did you mean `{} {{ /* fields */ }}`?", path_str),
                                );
                            }
3120
                        }
3121
                        return (err, candidates);
3122
                    }
3123 3124 3125
                    (Def::Union(..), _) |
                    (Def::Variant(..), _) |
                    (Def::VariantCtor(_, CtorKind::Fictive), _) if ns == ValueNS => {
3126
                        err.span_label(span, format!("did you mean `{} {{ /* fields */ }}`?",
3127
                                                     path_str));
3128
                        return (err, candidates);
3129
                    }
E
Esteban Küber 已提交
3130
                    (Def::SelfTy(..), _) if ns == ValueNS => {
3131
                        err.span_label(span, fallback_label);
E
Esteban Küber 已提交
3132 3133
                        err.note("can't use `Self` as a constructor, you must use the \
                                  implemented struct");
3134
                        return (err, candidates);
3135
                    }
3136
                    (Def::TyAlias(_), _) | (Def::AssociatedTy(..), _) if ns == ValueNS => {
E
Esteban Küber 已提交
3137
                        err.note("can't use a type alias as a constructor");
3138
                        return (err, candidates);
E
Esteban Küber 已提交
3139
                    }
3140 3141 3142 3143
                    _ => {}
                }
            }

3144
            // Fallback label.
3145
            if !levenshtein_worked {
3146
                err.span_label(base_span, fallback_label);
3147
                this.type_ascription_suggestion(&mut err, base_span);
3148
            }
3149
            (err, candidates)
3150 3151
        };
        let report_errors = |this: &mut Self, def: Option<Def>| {
3152 3153 3154 3155 3156
            let (err, candidates) = report_errors(this, def);
            let def_id = this.current_module.normal_ancestor_id;
            let node_id = this.definitions.as_local_node_id(def_id).unwrap();
            let better = def.is_some();
            this.use_injections.push(UseError { err, candidates, node_id, better });
3157 3158 3159
            err_path_resolution()
        };

3160 3161 3162 3163 3164 3165 3166 3167 3168 3169
        let resolution = match self.resolve_qpath_anywhere(
            id,
            qself,
            path,
            ns,
            span,
            source.defer_to_typeck(),
            source.global_by_default(),
            crate_lint,
        ) {
3170 3171
            Some(resolution) if resolution.unresolved_segments() == 0 => {
                if is_expected(resolution.base_def()) || resolution.base_def() == Def::Err {
3172 3173
                    resolution
                } else {
3174 3175 3176
                    // Add a temporary hack to smooth the transition to new struct ctor
                    // visibility rules. See #38932 for more details.
                    let mut res = None;
3177
                    if let Def::Struct(def_id) = resolution.base_def() {
3178
                        if let Some((ctor_def, ctor_vis))
3179
                                = self.struct_constructors.get(&def_id).cloned() {
3180 3181
                            if is_expected(ctor_def) && self.is_accessible(ctor_vis) {
                                let lint = lint::builtin::LEGACY_CONSTRUCTOR_VISIBILITY;
3182
                                self.session.buffer_lint(lint, id, span,
3183
                                    "private struct constructors are not usable through \
3184
                                     re-exports in outer modules",
3185
                                );
3186 3187 3188 3189 3190
                                res = Some(PathResolution::new(ctor_def));
                            }
                        }
                    }

3191
                    res.unwrap_or_else(|| report_errors(self, Some(resolution.base_def())))
3192 3193 3194 3195 3196 3197 3198
                }
            }
            Some(resolution) if source.defer_to_typeck() => {
                // Not fully resolved associated item `T::A::B` or `<T as Tr>::A::B`
                // or `<T>::A::B`. If `B` should be resolved in value namespace then
                // it needs to be added to the trait map.
                if ns == ValueNS {
V
Vadim Petrochenkov 已提交
3199
                    let item_name = *path.last().unwrap();
3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214
                    let traits = self.get_traits_containing_item(item_name, ns);
                    self.trait_map.insert(id, traits);
                }
                resolution
            }
            _ => report_errors(self, None)
        };

        if let PathSource::TraitItem(..) = source {} else {
            // Avoid recording definition of `A::B` in `<T as A>::B::C`.
            self.record_def(id, resolution);
        }
        resolution
    }

3215 3216 3217 3218
    fn type_ascription_suggestion(&self,
                                  err: &mut DiagnosticBuilder,
                                  base_span: Span) {
        debug!("type_ascription_suggetion {:?}", base_span);
D
Donato Sciarra 已提交
3219
        let cm = self.session.source_map();
3220 3221 3222 3223
        debug!("self.current_type_ascription {:?}", self.current_type_ascription);
        if let Some(sp) = self.current_type_ascription.last() {
            let mut sp = *sp;
            loop {  // try to find the `:`, bail on first non-':'/non-whitespace
3224 3225
                sp = cm.next_point(sp);
                if let Ok(snippet) = cm.span_to_snippet(sp.to(cm.next_point(sp))) {
3226
                    debug!("snippet {:?}", snippet);
3227 3228
                    let line_sp = cm.lookup_char_pos(sp.hi()).line;
                    let line_base_sp = cm.lookup_char_pos(base_span.lo()).line;
3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249
                    debug!("{:?} {:?}", line_sp, line_base_sp);
                    if snippet == ":" {
                        err.span_label(base_span,
                                       "expecting a type here because of type ascription");
                        if line_sp != line_base_sp {
                            err.span_suggestion_short(sp,
                                                      "did you mean to use `;` here instead?",
                                                      ";".to_string());
                        }
                        break;
                    } else if snippet.trim().len() != 0  {
                        debug!("tried to find type ascription `:` token, couldn't find it");
                        break;
                    }
                } else {
                    break;
                }
            }
        }
    }

3250 3251
    fn self_type_is_available(&mut self, span: Span) -> bool {
        let binding = self.resolve_ident_in_lexical_scope(keywords::SelfType.ident(),
3252
                                                          TypeNS, None, span);
3253 3254 3255
        if let Some(LexicalScopeBinding::Def(def)) = binding { def != Def::Err } else { false }
    }

3256 3257
    fn self_value_is_available(&mut self, self_span: Span, path_span: Span) -> bool {
        let ident = Ident::new(keywords::SelfValue.name(), self_span);
3258
        let binding = self.resolve_ident_in_lexical_scope(ident, ValueNS, None, path_span);
3259 3260 3261 3262 3263 3264 3265
        if let Some(LexicalScopeBinding::Def(def)) = binding { def != Def::Err } else { false }
    }

    // Resolve in alternative namespaces if resolution in the primary namespace fails.
    fn resolve_qpath_anywhere(&mut self,
                              id: NodeId,
                              qself: Option<&QSelf>,
V
Vadim Petrochenkov 已提交
3266
                              path: &[Ident],
3267 3268 3269
                              primary_ns: Namespace,
                              span: Span,
                              defer_to_typeck: bool,
3270 3271
                              global_by_default: bool,
                              crate_lint: CrateLint)
3272 3273 3274 3275 3276 3277
                              -> Option<PathResolution> {
        let mut fin_res = None;
        // FIXME: can't resolve paths in macro namespace yet, macros are
        // processed by the little special hack below.
        for (i, ns) in [primary_ns, TypeNS, ValueNS, /*MacroNS*/].iter().cloned().enumerate() {
            if i == 0 || ns != primary_ns {
3278
                match self.resolve_qpath(id, qself, path, ns, span, global_by_default, crate_lint) {
3279 3280
                    // If defer_to_typeck, then resolution > no resolution,
                    // otherwise full resolution > partial resolution > no resolution.
3281 3282
                    Some(res) if res.unresolved_segments() == 0 || defer_to_typeck =>
                        return Some(res),
3283 3284 3285 3286
                    res => if fin_res.is_none() { fin_res = res },
                };
            }
        }
3287
        let is_global = self.macro_prelude.get(&path[0].name).cloned()
3288
            .map(|binding| binding.get_macro(self).kind() == MacroKind::Bang).unwrap_or(false);
3289
        if primary_ns != MacroNS && (is_global ||
V
Vadim Petrochenkov 已提交
3290
                                     self.macro_names.contains(&path[0].modern())) {
3291
            // Return some dummy definition, it's enough for error reporting.
J
Josh Driver 已提交
3292 3293 3294
            return Some(
                PathResolution::new(Def::Macro(DefId::local(CRATE_DEF_INDEX), MacroKind::Bang))
            );
3295 3296 3297 3298 3299 3300 3301 3302
        }
        fin_res
    }

    /// Handles paths that may refer to associated items.
    fn resolve_qpath(&mut self,
                     id: NodeId,
                     qself: Option<&QSelf>,
V
Vadim Petrochenkov 已提交
3303
                     path: &[Ident],
3304 3305
                     ns: Namespace,
                     span: Span,
3306 3307
                     global_by_default: bool,
                     crate_lint: CrateLint)
3308
                     -> Option<PathResolution> {
3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319
        debug!(
            "resolve_qpath(id={:?}, qself={:?}, path={:?}, \
             ns={:?}, span={:?}, global_by_default={:?})",
            id,
            qself,
            path,
            ns,
            span,
            global_by_default,
        );

3320
        if let Some(qself) = qself {
J
Jeffrey Seyfried 已提交
3321
            if qself.position == 0 {
3322 3323 3324
                // This is a case like `<T>::B`, where there is no
                // trait to resolve.  In that case, we leave the `B`
                // segment to be resolved by type-check.
3325 3326 3327
                return Some(PathResolution::with_unresolved_segments(
                    Def::Mod(DefId::local(CRATE_DEF_INDEX)), path.len()
                ));
3328
            }
3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343

            // Make sure `A::B` in `<T as A::B>::C` is a trait item.
            //
            // Currently, `path` names the full item (`A::B::C`, in
            // our example).  so we extract the prefix of that that is
            // the trait (the slice upto and including
            // `qself.position`). And then we recursively resolve that,
            // but with `qself` set to `None`.
            //
            // However, setting `qself` to none (but not changing the
            // span) loses the information about where this path
            // *actually* appears, so for the purposes of the crate
            // lint we pass along information that this is the trait
            // name from a fully qualified path, and this also
            // contains the full span (the `CrateLint::QPathTrait`).
3344
            let ns = if qself.position + 1 == path.len() { ns } else { TypeNS };
3345 3346 3347 3348 3349 3350
            let res = self.smart_resolve_path_fragment(
                id,
                None,
                &path[..qself.position + 1],
                span,
                PathSource::TraitItem(ns),
3351 3352 3353 3354
                CrateLint::QPathTrait {
                    qpath_id: id,
                    qpath_span: qself.path_span,
                },
3355
            );
3356 3357 3358 3359

            // The remaining segments (the `C` in our example) will
            // have to be resolved by type-check, since that requires doing
            // trait resolution.
3360 3361 3362
            return Some(PathResolution::with_unresolved_segments(
                res.base_def(), res.unresolved_segments() + path.len() - qself.position - 1
            ));
3363 3364
        }

N
Niko Matsakis 已提交
3365
        let result = match self.resolve_path(
3366
            None,
N
Niko Matsakis 已提交
3367 3368 3369 3370
            &path,
            Some(ns),
            true,
            span,
3371
            crate_lint,
N
Niko Matsakis 已提交
3372
        ) {
3373
            PathResult::NonModule(path_res) => path_res,
3374
            PathResult::Module(ModuleOrUniformRoot::Module(module)) if !module.is_normal() => {
J
Jeffrey Seyfried 已提交
3375
                PathResolution::new(module.def().unwrap())
V
Cleanup  
Vadim Petrochenkov 已提交
3376
            }
3377 3378 3379 3380 3381 3382
            // In `a(::assoc_item)*` `a` cannot be a module. If `a` does resolve to a module we
            // don't report an error right away, but try to fallback to a primitive type.
            // So, we are still able to successfully resolve something like
            //
            // use std::u8; // bring module u8 in scope
            // fn f() -> u8 { // OK, resolves to primitive u8, not to std::u8
V
Cleanup  
Vadim Petrochenkov 已提交
3383 3384
            //     u8::max_value() // OK, resolves to associated function <u8>::max_value,
            //                     // not to non-existent std::u8::max_value
3385 3386 3387 3388
            // }
            //
            // Such behavior is required for backward compatibility.
            // The same fallback is used when `a` resolves to nothing.
3389 3390
            PathResult::Module(ModuleOrUniformRoot::Module(_)) |
            PathResult::Failed(..)
3391
                    if (ns == TypeNS || path.len() > 1) &&
3392
                       self.primitive_type_table.primitive_types
V
Vadim Petrochenkov 已提交
3393 3394
                           .contains_key(&path[0].name) => {
                let prim = self.primitive_type_table.primitive_types[&path[0].name];
3395
                PathResolution::with_unresolved_segments(Def::PrimTy(prim), path.len() - 1)
J
Jeffrey Seyfried 已提交
3396
            }
3397 3398
            PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
                PathResolution::new(module.def().unwrap()),
3399
            PathResult::Failed(span, msg, false) => {
J
Jeffrey Seyfried 已提交
3400 3401 3402
                resolve_error(self, span, ResolutionError::FailedToResolve(&msg));
                err_path_resolution()
            }
3403
            PathResult::Module(ModuleOrUniformRoot::UniformRoot(_)) |
3404 3405
            PathResult::Failed(..) => return None,
            PathResult::Indeterminate => bug!("indetermined path result in resolve_qpath"),
J
Jeffrey Seyfried 已提交
3406 3407
        };

3408
        if path.len() > 1 && !global_by_default && result.base_def() != Def::Err &&
V
Vadim Petrochenkov 已提交
3409 3410
           path[0].name != keywords::CrateRoot.name() &&
           path[0].name != keywords::DollarCrate.name() {
3411
            let unqualified_result = {
N
Niko Matsakis 已提交
3412
                match self.resolve_path(
3413
                    None,
N
Niko Matsakis 已提交
3414 3415 3416 3417 3418 3419
                    &[*path.last().unwrap()],
                    Some(ns),
                    false,
                    span,
                    CrateLint::No,
                ) {
3420
                    PathResult::NonModule(path_res) => path_res.base_def(),
3421 3422
                    PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
                        module.def().unwrap(),
3423 3424 3425
                    _ => return Some(result),
                }
            };
3426
            if result.base_def() == unqualified_result {
3427
                let lint = lint::builtin::UNUSED_QUALIFICATIONS;
3428
                self.session.buffer_lint(lint, id, span, "unnecessary qualification")
N
Nick Cameron 已提交
3429
            }
3430
        }
N
Nick Cameron 已提交
3431

J
Jeffrey Seyfried 已提交
3432
        Some(result)
3433 3434
    }

3435 3436
    fn resolve_path(
        &mut self,
3437
        base_module: Option<ModuleOrUniformRoot<'a>>,
3438 3439 3440 3441 3442 3443
        path: &[Ident],
        opt_ns: Option<Namespace>, // `None` indicates a module path
        record_used: bool,
        path_span: Span,
        crate_lint: CrateLint,
    ) -> PathResult<'a> {
3444
        let mut module = base_module;
3445
        let mut allow_super = true;
3446
        let mut second_binding = None;
J
Jeffrey Seyfried 已提交
3447

3448
        debug!(
N
Niko Matsakis 已提交
3449 3450
            "resolve_path(path={:?}, opt_ns={:?}, record_used={:?}, \
             path_span={:?}, crate_lint={:?})",
3451 3452 3453 3454 3455 3456 3457
            path,
            opt_ns,
            record_used,
            path_span,
            crate_lint,
        );

J
Jeffrey Seyfried 已提交
3458
        for (i, &ident) in path.iter().enumerate() {
3459
            debug!("resolve_path ident {} {:?}", i, ident);
J
Jeffrey Seyfried 已提交
3460 3461
            let is_last = i == path.len() - 1;
            let ns = if is_last { opt_ns.unwrap_or(TypeNS) } else { TypeNS };
V
Vadim Petrochenkov 已提交
3462
            let name = ident.name;
J
Jeffrey Seyfried 已提交
3463

3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484
            allow_super &= ns == TypeNS &&
                (name == keywords::SelfValue.name() ||
                 name == keywords::Super.name());

            if ns == TypeNS {
                if allow_super && name == keywords::Super.name() {
                    let mut ctxt = ident.span.ctxt().modern();
                    let self_module = match i {
                        0 => Some(self.resolve_self(&mut ctxt, self.current_module)),
                        _ => match module {
                            Some(ModuleOrUniformRoot::Module(module)) => Some(module),
                            _ => None,
                        },
                    };
                    if let Some(self_module) = self_module {
                        if let Some(parent) = self_module.parent {
                            module = Some(ModuleOrUniformRoot::Module(
                                self.resolve_self(&mut ctxt, parent)));
                            continue;
                        }
                    }
J
Jeffrey Seyfried 已提交
3485
                    let msg = "There are too many initial `super`s.".to_string();
3486
                    return PathResult::Failed(ident.span, msg, false);
J
Jeffrey Seyfried 已提交
3487
                }
3488
                if i == 0 {
3489 3490 3491 3492 3493 3494
                    if name == keywords::SelfValue.name() {
                        let mut ctxt = ident.span.ctxt().modern();
                        module = Some(ModuleOrUniformRoot::Module(
                            self.resolve_self(&mut ctxt, self.current_module)));
                        continue;
                    }
3495 3496 3497 3498 3499 3500 3501
                    if name == keywords::Extern.name() ||
                       name == keywords::CrateRoot.name() &&
                       self.session.features_untracked().extern_absolute_paths &&
                       self.session.rust_2018() {
                        module = Some(ModuleOrUniformRoot::UniformRoot(name));
                        continue;
                    }
3502 3503 3504 3505 3506 3507 3508 3509
                    if name == keywords::CrateRoot.name() ||
                       name == keywords::Crate.name() ||
                       name == keywords::DollarCrate.name() {
                        // `::a::b`, `crate::a::b` or `$crate::a::b`
                        module = Some(ModuleOrUniformRoot::Module(
                            self.resolve_crate_root(ident)));
                        continue;
                    }
V
Vadim Petrochenkov 已提交
3510
                }
3511 3512
            }

3513
            // Report special messages for path segment keywords in wrong positions.
3514
            if ident.is_path_segment_keyword() && i != 0 {
3515
                let name_str = if name == keywords::CrateRoot.name() {
L
ljedrz 已提交
3516
                    "crate root".to_string()
3517 3518 3519
                } else {
                    format!("`{}`", name)
                };
V
Vadim Petrochenkov 已提交
3520
                let msg = if i == 1 && path[0].name == keywords::CrateRoot.name() {
3521 3522 3523 3524 3525 3526 3527
                    format!("global paths cannot start with {}", name_str)
                } else {
                    format!("{} in paths can only be used in start position", name_str)
                };
                return PathResult::Failed(ident.span, msg, false);
            }

J
Jeffrey Seyfried 已提交
3528
            let binding = if let Some(module) = module {
3529
                self.resolve_ident_in_module(module, ident, ns, record_used, path_span)
3530
            } else if opt_ns == Some(MacroNS) {
3531 3532
                assert!(ns == TypeNS);
                self.resolve_lexical_macro_path_segment(ident, ns, record_used, record_used,
3533
                                                        false, path_span).map(|(b, _)| b)
J
Jeffrey Seyfried 已提交
3534
            } else {
3535 3536 3537
                let record_used_id =
                    if record_used { crate_lint.node_id().or(Some(CRATE_NODE_ID)) } else { None };
                match self.resolve_ident_in_lexical_scope(ident, ns, record_used_id, path_span) {
3538
                    // we found a locally-imported or available item/module
J
Jeffrey Seyfried 已提交
3539
                    Some(LexicalScopeBinding::Item(binding)) => Ok(binding),
3540
                    // we found a local variable or type param
3541 3542
                    Some(LexicalScopeBinding::Def(def))
                            if opt_ns == Some(TypeNS) || opt_ns == Some(ValueNS) => {
3543 3544 3545
                        return PathResult::NonModule(PathResolution::with_unresolved_segments(
                            def, path.len() - 1
                        ));
J
Jeffrey Seyfried 已提交
3546
                    }
3547
                    _ => Err(if record_used { Determined } else { Undetermined }),
J
Jeffrey Seyfried 已提交
3548 3549 3550 3551 3552
                }
            };

            match binding {
                Ok(binding) => {
3553 3554 3555
                    if i == 1 {
                        second_binding = Some(binding);
                    }
3556 3557
                    let def = binding.def();
                    let maybe_assoc = opt_ns != Some(MacroNS) && PathSource::Type.is_expected(def);
J
Jeffrey Seyfried 已提交
3558
                    if let Some(next_module) = binding.module() {
3559
                        module = Some(ModuleOrUniformRoot::Module(next_module));
3560
                    } else if def == Def::ToolMod && i + 1 != path.len() {
3561 3562
                        let def = Def::NonMacroAttr(NonMacroAttrKind::Tool);
                        return PathResult::NonModule(PathResolution::new(def));
3563
                    } else if def == Def::Err {
J
Jeffrey Seyfried 已提交
3564
                        return PathResult::NonModule(err_path_resolution());
3565
                    } else if opt_ns.is_some() && (is_last || maybe_assoc) {
3566
                        self.lint_if_path_starts_with_module(
3567
                            crate_lint,
3568 3569 3570 3571
                            path,
                            path_span,
                            second_binding,
                        );
3572 3573 3574
                        return PathResult::NonModule(PathResolution::with_unresolved_segments(
                            def, path.len() - i - 1
                        ));
J
Jeffrey Seyfried 已提交
3575
                    } else {
3576
                        return PathResult::Failed(ident.span,
V
Vadim Petrochenkov 已提交
3577
                                                  format!("Not a module `{}`", ident),
3578
                                                  is_last);
J
Jeffrey Seyfried 已提交
3579 3580 3581 3582
                    }
                }
                Err(Undetermined) => return PathResult::Indeterminate,
                Err(Determined) => {
3583
                    if let Some(ModuleOrUniformRoot::Module(module)) = module {
J
Jeffrey Seyfried 已提交
3584
                        if opt_ns.is_some() && !module.is_normal() {
3585 3586 3587
                            return PathResult::NonModule(PathResolution::with_unresolved_segments(
                                module.def().unwrap(), path.len() - i
                            ));
J
Jeffrey Seyfried 已提交
3588 3589
                        }
                    }
3590 3591 3592 3593 3594
                    let module_def = match module {
                        Some(ModuleOrUniformRoot::Module(module)) => module.def(),
                        _ => None,
                    };
                    let msg = if module_def == self.graph_root.def() {
J
Jeffrey Seyfried 已提交
3595 3596
                        let is_mod = |def| match def { Def::Mod(..) => true, _ => false };
                        let mut candidates =
3597
                            self.lookup_import_candidates(name, TypeNS, is_mod);
3598 3599 3600
                        candidates.sort_by_cached_key(|c| {
                            (c.path.segments.len(), c.path.to_string())
                        });
J
Jeffrey Seyfried 已提交
3601
                        if let Some(candidate) = candidates.get(0) {
3602
                            format!("Did you mean `{}`?", candidate.path)
J
Jeffrey Seyfried 已提交
3603
                        } else {
V
Vadim Petrochenkov 已提交
3604
                            format!("Maybe a missing `extern crate {};`?", ident)
J
Jeffrey Seyfried 已提交
3605 3606
                        }
                    } else if i == 0 {
V
Vadim Petrochenkov 已提交
3607
                        format!("Use of undeclared type or module `{}`", ident)
J
Jeffrey Seyfried 已提交
3608
                    } else {
V
Vadim Petrochenkov 已提交
3609
                        format!("Could not find `{}` in `{}`", ident, path[i - 1])
J
Jeffrey Seyfried 已提交
3610
                    };
3611
                    return PathResult::Failed(ident.span, msg, is_last);
J
Jeffrey Seyfried 已提交
3612 3613
                }
            }
3614 3615
        }

3616
        self.lint_if_path_starts_with_module(crate_lint, path, path_span, second_binding);
3617

3618 3619 3620 3621
        PathResult::Module(module.unwrap_or_else(|| {
            span_bug!(path_span, "resolve_path: empty(?) path {:?} has no module", path);
        }))

3622 3623
    }

3624 3625 3626 3627 3628 3629 3630
    fn lint_if_path_starts_with_module(
        &self,
        crate_lint: CrateLint,
        path: &[Ident],
        path_span: Span,
        second_binding: Option<&NameBinding>,
    ) {
3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641
        // In the 2018 edition this lint is a hard error, so nothing to do
        if self.session.rust_2018() {
            return
        }

        // In the 2015 edition there's no use in emitting lints unless the
        // crate's already enabled the feature that we're going to suggest
        if !self.session.features_untracked().crate_in_paths {
            return
        }

3642 3643 3644 3645
        let (diag_id, diag_span) = match crate_lint {
            CrateLint::No => return,
            CrateLint::SimplePath(id) => (id, path_span),
            CrateLint::UsePath { root_id, root_span } => (root_id, root_span),
3646
            CrateLint::QPathTrait { qpath_id, qpath_span } => (qpath_id, qpath_span),
3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661
        };

        let first_name = match path.get(0) {
            Some(ident) => ident.name,
            None => return,
        };

        // We're only interested in `use` paths which should start with
        // `{{root}}` or `extern` currently.
        if first_name != keywords::Extern.name() && first_name != keywords::CrateRoot.name() {
            return
        }

        match path.get(1) {
            // If this import looks like `crate::...` it's already good
3662
            Some(ident) if ident.name == keywords::Crate.name() => return,
3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675
            // Otherwise go below to see if it's an extern crate
            Some(_) => {}
            // If the path has length one (and it's `CrateRoot` most likely)
            // then we don't know whether we're gonna be importing a crate or an
            // item in our crate. Defer this lint to elsewhere
            None => return,
        }

        // If the first element of our path was actually resolved to an
        // `ExternCrate` (also used for `crate::...`) then no need to issue a
        // warning, this looks all good!
        if let Some(binding) = second_binding {
            if let NameBindingKind::Import { directive: d, .. } = binding.kind {
3676 3677 3678
                // Careful: we still want to rewrite paths from
                // renamed extern crates.
                if let ImportDirectiveSubclass::ExternCrate(None) = d.subclass {
3679 3680 3681 3682 3683 3684
                    return
                }
            }
        }

        let diag = lint::builtin::BuiltinLintDiagnostics
3685
            ::AbsPathWithModule(diag_span);
3686
        self.session.buffer_lint_with_diagnostic(
3687
            lint::builtin::ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
3688
            diag_id, diag_span,
3689 3690 3691 3692 3693
            "absolute paths must start with `self`, `super`, \
            `crate`, or an external crate name in the 2018 edition",
            diag);
    }

3694
    // Resolve a local definition, potentially adjusting for closures.
3695 3696 3697 3698
    fn adjust_local_def(&mut self,
                        ns: Namespace,
                        rib_index: usize,
                        mut def: Def,
3699 3700
                        record_used: bool,
                        span: Span) -> Def {
3701 3702 3703 3704
        let ribs = &self.ribs[ns][rib_index + 1..];

        // An invalid forward use of a type parameter from a previous default.
        if let ForwardTyParamBanRibKind = self.ribs[ns][rib_index].kind {
3705
            if record_used {
3706
                resolve_error(self, span, ResolutionError::ForwardDeclaredTyParam);
3707 3708 3709 3710 3711
            }
            assert_eq!(def, Def::Err);
            return Def::Err;
        }

3712
        match def {
3713
            Def::Upvar(..) => {
3714
                span_bug!(span, "unexpected {:?} in bindings", def)
3715
            }
3716
            Def::Local(node_id) => {
3717 3718
                for rib in ribs {
                    match rib.kind {
3719 3720
                        NormalRibKind | ModuleRibKind(..) | MacroDefinition(..) |
                        ForwardTyParamBanRibKind => {
3721 3722 3723 3724 3725
                            // Nothing to do. Continue.
                        }
                        ClosureRibKind(function_id) => {
                            let prev_def = def;

C
corentih 已提交
3726 3727
                            let seen = self.freevars_seen
                                           .entry(function_id)
3728
                                           .or_default();
3729
                            if let Some(&index) = seen.get(&node_id) {
3730
                                def = Def::Upvar(node_id, index, function_id);
3731 3732
                                continue;
                            }
C
corentih 已提交
3733 3734
                            let vec = self.freevars
                                          .entry(function_id)
3735
                                          .or_default();
3736
                            let depth = vec.len();
3737
                            def = Def::Upvar(node_id, depth, function_id);
3738

3739
                            if record_used {
3740 3741
                                vec.push(Freevar {
                                    def: prev_def,
3742
                                    span,
3743 3744 3745
                                });
                                seen.insert(node_id, depth);
                            }
3746
                        }
3747
                        ItemRibKind | TraitOrImplItemRibKind => {
3748 3749 3750
                            // This was an attempt to access an upvar inside a
                            // named function item. This is not allowed, so we
                            // report an error.
3751
                            if record_used {
3752 3753 3754
                                resolve_error(self, span,
                                        ResolutionError::CannotCaptureDynamicEnvironmentInFnItem);
                            }
3755
                            return Def::Err;
3756 3757 3758
                        }
                        ConstantItemRibKind => {
                            // Still doesn't deal with upvars
3759
                            if record_used {
3760 3761 3762
                                resolve_error(self, span,
                                        ResolutionError::AttemptToUseNonConstantValueInConstant);
                            }
3763
                            return Def::Err;
3764 3765 3766 3767
                        }
                    }
                }
            }
3768
            Def::TyParam(..) | Def::SelfTy(..) => {
3769 3770
                for rib in ribs {
                    match rib.kind {
3771
                        NormalRibKind | TraitOrImplItemRibKind | ClosureRibKind(..) |
3772 3773
                        ModuleRibKind(..) | MacroDefinition(..) | ForwardTyParamBanRibKind |
                        ConstantItemRibKind => {
3774 3775 3776 3777 3778
                            // Nothing to do. Continue.
                        }
                        ItemRibKind => {
                            // This was an attempt to use a type parameter outside
                            // its scope.
3779
                            if record_used {
3780
                                resolve_error(self, span,
3781
                                    ResolutionError::TypeParametersFromOuterFunction(def));
3782
                            }
3783
                            return Def::Err;
3784 3785 3786 3787 3788 3789
                        }
                    }
                }
            }
            _ => {}
        }
3790
        return def;
3791 3792
    }

3793
    fn lookup_assoc_candidate<FilterFn>(&mut self,
3794
                                        ident: Ident,
3795 3796 3797 3798 3799
                                        ns: Namespace,
                                        filter_fn: FilterFn)
                                        -> Option<AssocSuggestion>
        where FilterFn: Fn(Def) -> bool
    {
3800
        fn extract_node_id(t: &Ty) -> Option<NodeId> {
3801
            match t.node {
3802 3803
                TyKind::Path(None, _) => Some(t.id),
                TyKind::Rptr(_, ref mut_ty) => extract_node_id(&mut_ty.ty),
3804 3805 3806 3807 3808 3809 3810
                // This doesn't handle the remaining `Ty` variants as they are not
                // that commonly the self_type, it might be interesting to provide
                // support for those in future.
                _ => None,
            }
        }

3811
        // Fields are generally expected in the same contexts as locals.
3812
        if filter_fn(Def::Local(ast::DUMMY_NODE_ID)) {
3813 3814 3815
            if let Some(node_id) = self.current_self_type.as_ref().and_then(extract_node_id) {
                // Look for a field with the same name in the current self_type.
                if let Some(resolution) = self.def_map.get(&node_id) {
3816 3817 3818
                    match resolution.base_def() {
                        Def::Struct(did) | Def::Union(did)
                                if resolution.unresolved_segments() == 0 => {
3819
                            if let Some(field_names) = self.field_names.get(&did) {
3820
                                if field_names.iter().any(|&field_name| ident.name == field_name) {
3821 3822
                                    return Some(AssocSuggestion::Field);
                                }
3823
                            }
3824
                        }
3825
                        _ => {}
3826
                    }
3827
                }
3828
            }
3829 3830
        }

3831
        // Look for associated items in the current trait.
3832
        if let Some((module, _)) = self.current_trait_ref {
3833 3834 3835 3836 3837 3838 3839
            if let Ok(binding) = self.resolve_ident_in_module(
                    ModuleOrUniformRoot::Module(module),
                    ident,
                    ns,
                    false,
                    module.span,
                ) {
3840
                let def = binding.def();
3841
                if filter_fn(def) {
3842
                    return Some(if self.has_self.contains(&def.def_id()) {
3843 3844 3845 3846
                        AssocSuggestion::MethodWithSelf
                    } else {
                        AssocSuggestion::AssocItem
                    });
3847 3848 3849 3850
                }
            }
        }

3851
        None
3852 3853
    }

3854
    fn lookup_typo_candidate<FilterFn>(&mut self,
V
Vadim Petrochenkov 已提交
3855
                                       path: &[Ident],
3856
                                       ns: Namespace,
3857 3858
                                       filter_fn: FilterFn,
                                       span: Span)
3859
                                       -> Option<Symbol>
3860 3861
        where FilterFn: Fn(Def) -> bool
    {
3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872
        let add_module_candidates = |module: Module, names: &mut Vec<Name>| {
            for (&(ident, _), resolution) in module.resolutions.borrow().iter() {
                if let Some(binding) = resolution.borrow().binding {
                    if filter_fn(binding.def()) {
                        names.push(ident.name);
                    }
                }
            }
        };

        let mut names = Vec::new();
3873
        if path.len() == 1 {
3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891
            // Search in lexical scope.
            // Walk backwards up the ribs in scope and collect candidates.
            for rib in self.ribs[ns].iter().rev() {
                // Locals and type parameters
                for (ident, def) in &rib.bindings {
                    if filter_fn(*def) {
                        names.push(ident.name);
                    }
                }
                // Items in scope
                if let ModuleRibKind(module) = rib.kind {
                    // Items from this module
                    add_module_candidates(module, &mut names);

                    if let ModuleKind::Block(..) = module.kind {
                        // We can see through blocks
                    } else {
                        // Items from the prelude
3892 3893 3894
                        if !module.no_implicit_prelude {
                            names.extend(self.extern_prelude.iter().cloned());
                            if let Some(prelude) = self.prelude {
3895 3896 3897 3898 3899 3900 3901 3902
                                add_module_candidates(prelude, &mut names);
                            }
                        }
                        break;
                    }
                }
            }
            // Add primitive types to the mix
3903
            if filter_fn(Def::PrimTy(Bool)) {
3904 3905 3906
                names.extend(
                    self.primitive_type_table.primitive_types.iter().map(|(name, _)| name)
                )
3907 3908 3909 3910
            }
        } else {
            // Search in module.
            let mod_path = &path[..path.len() - 1];
3911
            if let PathResult::Module(module) = self.resolve_path(None, mod_path, Some(TypeNS),
3912
                                                                  false, span, CrateLint::No) {
3913 3914 3915
                if let ModuleOrUniformRoot::Module(module) = module {
                    add_module_candidates(module, &mut names);
                }
3916
            }
3917
        }
3918

V
Vadim Petrochenkov 已提交
3919
        let name = path[path.len() - 1].name;
3920
        // Make sure error reporting is deterministic.
3921
        names.sort_by_cached_key(|name| name.as_str());
3922
        match find_best_match_for_name(names.iter(), &name.as_str(), None) {
3923
            Some(found) if found != name => Some(found),
3924
            _ => None,
3925
        }
3926 3927
    }

3928
    fn with_resolved_label<F>(&mut self, label: Option<Label>, id: NodeId, f: F)
3929 3930
        where F: FnOnce(&mut Resolver)
    {
3931
        if let Some(label) = label {
3932
            self.unused_labels.insert(id, label.ident.span);
3933
            let def = Def::Label(id);
3934
            self.with_label_rib(|this| {
3935 3936
                let ident = label.ident.modern_and_legacy();
                this.label_ribs.last_mut().unwrap().bindings.insert(ident, def);
3937
                f(this);
3938 3939
            });
        } else {
3940
            f(self);
3941 3942 3943
        }
    }

3944
    fn resolve_labeled_block(&mut self, label: Option<Label>, id: NodeId, block: &Block) {
3945 3946 3947
        self.with_resolved_label(label, id, |this| this.visit_block(block));
    }

3948
    fn resolve_expr(&mut self, expr: &Expr, parent: Option<&Expr>) {
P
Patrick Walton 已提交
3949 3950
        // First, record candidate traits for this expression if it could
        // result in the invocation of a method call.
3951 3952 3953

        self.record_candidate_traits_for_expr_if_necessary(expr);

3954
        // Next, resolve the node.
3955
        match expr.node {
3956 3957
            ExprKind::Path(ref qself, ref path) => {
                self.smart_resolve_path(expr.id, qself.as_ref(), path, PathSource::Expr(parent));
3958
                visit::walk_expr(self, expr);
3959 3960
            }

V
Vadim Petrochenkov 已提交
3961
            ExprKind::Struct(ref path, ..) => {
3962
                self.smart_resolve_path(expr.id, None, path, PathSource::Struct);
3963
                visit::walk_expr(self, expr);
3964 3965
            }

3966
            ExprKind::Break(Some(label), _) | ExprKind::Continue(Some(label)) => {
3967 3968 3969 3970
                let def = self.search_label(label.ident, |rib, ident| {
                    rib.bindings.get(&ident.modern_and_legacy()).cloned()
                });
                match def {
3971
                    None => {
3972 3973 3974
                        // Search again for close matches...
                        // Picks the first label that is "close enough", which is not necessarily
                        // the closest match
3975
                        let close_match = self.search_label(label.ident, |rib, ident| {
3976
                            let names = rib.bindings.iter().map(|(id, _)| &id.name);
V
Vadim Petrochenkov 已提交
3977
                            find_best_match_for_name(names, &*ident.as_str(), None)
3978
                        });
3979
                        self.record_def(expr.id, err_path_resolution());
3980
                        resolve_error(self,
3981
                                      label.ident.span,
V
Vadim Petrochenkov 已提交
3982
                                      ResolutionError::UndeclaredLabel(&label.ident.as_str(),
3983
                                                                       close_match));
3984
                    }
3985
                    Some(Def::Label(id)) => {
3986
                        // Since this def is a label, it is never read.
3987 3988
                        self.record_def(expr.id, PathResolution::new(Def::Label(id)));
                        self.unused_labels.remove(&id);
3989 3990
                    }
                    Some(_) => {
3991
                        span_bug!(expr.span, "label wasn't mapped to a label def!");
3992 3993
                    }
                }
3994 3995 3996

                // visit `break` argument if any
                visit::walk_expr(self, expr);
3997
            }
3998

3999
            ExprKind::IfLet(ref pats, ref subexpression, ref if_block, ref optional_else) => {
4000 4001
                self.visit_expr(subexpression);

J
Jeffrey Seyfried 已提交
4002
                self.ribs[ValueNS].push(Rib::new(NormalRibKind));
4003 4004 4005 4006 4007 4008
                let mut bindings_list = FxHashMap();
                for pat in pats {
                    self.resolve_pattern(pat, PatternSource::IfLet, &mut bindings_list);
                }
                // This has to happen *after* we determine which pat_idents are variants
                self.check_consistent_bindings(pats);
4009
                self.visit_block(if_block);
J
Jeffrey Seyfried 已提交
4010
                self.ribs[ValueNS].pop();
4011 4012 4013 4014

                optional_else.as_ref().map(|expr| self.visit_expr(expr));
            }

J
Jeffrey Seyfried 已提交
4015 4016 4017
            ExprKind::Loop(ref block, label) => self.resolve_labeled_block(label, expr.id, &block),

            ExprKind::While(ref subexpression, ref block, label) => {
4018 4019 4020 4021
                self.with_resolved_label(label, expr.id, |this| {
                    this.visit_expr(subexpression);
                    this.visit_block(block);
                });
J
Jeffrey Seyfried 已提交
4022 4023
            }

4024
            ExprKind::WhileLet(ref pats, ref subexpression, ref block, label) => {
4025 4026
                self.with_resolved_label(label, expr.id, |this| {
                    this.visit_expr(subexpression);
4027
                    this.ribs[ValueNS].push(Rib::new(NormalRibKind));
4028 4029 4030 4031 4032 4033
                    let mut bindings_list = FxHashMap();
                    for pat in pats {
                        this.resolve_pattern(pat, PatternSource::WhileLet, &mut bindings_list);
                    }
                    // This has to happen *after* we determine which pat_idents are variants
                    this.check_consistent_bindings(pats);
4034
                    this.visit_block(block);
4035
                    this.ribs[ValueNS].pop();
4036
                });
4037 4038 4039 4040
            }

            ExprKind::ForLoop(ref pattern, ref subexpression, ref block, label) => {
                self.visit_expr(subexpression);
J
Jeffrey Seyfried 已提交
4041
                self.ribs[ValueNS].push(Rib::new(NormalRibKind));
4042
                self.resolve_pattern(pattern, PatternSource::For, &mut FxHashMap());
4043

J
Jeffrey Seyfried 已提交
4044
                self.resolve_labeled_block(label, expr.id, block);
4045

J
Jeffrey Seyfried 已提交
4046
                self.ribs[ValueNS].pop();
4047 4048
            }

4049 4050
            ExprKind::Block(ref block, label) => self.resolve_labeled_block(label, block.id, block),

4051
            // Equivalent to `visit::walk_expr` + passing some context to children.
4052
            ExprKind::Field(ref subexpression, _) => {
4053
                self.resolve_expr(subexpression, Some(expr));
4054
            }
4055
            ExprKind::MethodCall(ref segment, ref arguments) => {
4056
                let mut arguments = arguments.iter();
4057
                self.resolve_expr(arguments.next().unwrap(), Some(expr));
4058 4059 4060
                for argument in arguments {
                    self.resolve_expr(argument, None);
                }
4061
                self.visit_path_segment(expr.span, segment);
4062
            }
4063

4064
            ExprKind::Call(ref callee, ref arguments) => {
4065
                self.resolve_expr(callee, Some(expr));
4066 4067 4068 4069
                for argument in arguments {
                    self.resolve_expr(argument, None);
                }
            }
4070 4071 4072 4073 4074
            ExprKind::Type(ref type_expr, _) => {
                self.current_type_ascription.push(type_expr.span);
                visit::walk_expr(self, expr);
                self.current_type_ascription.pop();
            }
T
Taylor Cramer 已提交
4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087
            // Resolve the body of async exprs inside the async closure to which they desugar
            ExprKind::Async(_, async_closure_id, ref block) => {
                let rib_kind = ClosureRibKind(async_closure_id);
                self.ribs[ValueNS].push(Rib::new(rib_kind));
                self.label_ribs.push(Rib::new(rib_kind));
                self.visit_block(&block);
                self.label_ribs.pop();
                self.ribs[ValueNS].pop();
            }
            // `async |x| ...` gets desugared to `|x| future_from_generator(|| ...)`, so we need to
            // resolve the arguments within the proper scopes so that usages of them inside the
            // closure are detected as upvars rather than normal closure arg usages.
            ExprKind::Closure(
4088 4089 4090
                _, IsAsync::Async { closure_id: inner_closure_id, .. }, _,
                ref fn_decl, ref body, _span,
            ) => {
T
Taylor Cramer 已提交
4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118
                let rib_kind = ClosureRibKind(expr.id);
                self.ribs[ValueNS].push(Rib::new(rib_kind));
                self.label_ribs.push(Rib::new(rib_kind));
                // Resolve arguments:
                let mut bindings_list = FxHashMap();
                for argument in &fn_decl.inputs {
                    self.resolve_pattern(&argument.pat, PatternSource::FnParam, &mut bindings_list);
                    self.visit_ty(&argument.ty);
                }
                // No need to resolve return type-- the outer closure return type is
                // FunctionRetTy::Default

                // Now resolve the inner closure
                {
                    let rib_kind = ClosureRibKind(inner_closure_id);
                    self.ribs[ValueNS].push(Rib::new(rib_kind));
                    self.label_ribs.push(Rib::new(rib_kind));
                    // No need to resolve arguments: the inner closure has none.
                    // Resolve the return type:
                    visit::walk_fn_ret_ty(self, &fn_decl.output);
                    // Resolve the body
                    self.visit_expr(body);
                    self.label_ribs.pop();
                    self.ribs[ValueNS].pop();
                }
                self.label_ribs.pop();
                self.ribs[ValueNS].pop();
            }
B
Brian Anderson 已提交
4119
            _ => {
4120
                visit::walk_expr(self, expr);
4121 4122 4123 4124
            }
        }
    }

E
Eduard Burtescu 已提交
4125
    fn record_candidate_traits_for_expr_if_necessary(&mut self, expr: &Expr) {
4126
        match expr.node {
V
Vadim Petrochenkov 已提交
4127
            ExprKind::Field(_, ident) => {
4128 4129 4130 4131
                // FIXME(#6890): Even though you can't treat a method like a
                // field, we need to add any trait methods we find that match
                // the field name so that we can do some nice error reporting
                // later on in typeck.
V
Vadim Petrochenkov 已提交
4132
                let traits = self.get_traits_containing_item(ident, ValueNS);
4133
                self.trait_map.insert(expr.id, traits);
4134
            }
4135
            ExprKind::MethodCall(ref segment, ..) => {
C
corentih 已提交
4136
                debug!("(recording candidate traits for expr) recording traits for {}",
4137
                       expr.id);
4138
                let traits = self.get_traits_containing_item(segment.ident, ValueNS);
4139
                self.trait_map.insert(expr.id, traits);
4140
            }
4141
            _ => {
4142 4143 4144 4145 4146
                // Nothing to do.
            }
        }
    }

J
Jeffrey Seyfried 已提交
4147 4148
    fn get_traits_containing_item(&mut self, mut ident: Ident, ns: Namespace)
                                  -> Vec<TraitCandidate> {
4149
        debug!("(getting traits containing item) looking for '{}'", ident.name);
E
Eduard Burtescu 已提交
4150

4151
        let mut found_traits = Vec::new();
J
Jeffrey Seyfried 已提交
4152
        // Look for the current trait.
4153
        if let Some((module, _)) = self.current_trait_ref {
4154 4155 4156 4157 4158 4159 4160
            if self.resolve_ident_in_module(
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                module.span,
            ).is_ok() {
4161 4162
                let def_id = module.def_id().unwrap();
                found_traits.push(TraitCandidate { def_id: def_id, import_id: None });
E
Eduard Burtescu 已提交
4163
            }
J
Jeffrey Seyfried 已提交
4164
        }
4165

4166
        ident.span = ident.span.modern();
J
Jeffrey Seyfried 已提交
4167 4168
        let mut search_module = self.current_module;
        loop {
4169
            self.get_traits_in_module_containing_item(ident, ns, search_module, &mut found_traits);
4170 4171 4172
            search_module = unwrap_or!(
                self.hygienic_lexical_parent(search_module, &mut ident.span), break
            );
4173
        }
4174

4175 4176
        if let Some(prelude) = self.prelude {
            if !search_module.no_implicit_prelude {
4177
                self.get_traits_in_module_containing_item(ident, ns, prelude, &mut found_traits);
E
Eduard Burtescu 已提交
4178
            }
4179 4180
        }

E
Eduard Burtescu 已提交
4181
        found_traits
4182 4183
    }

4184
    fn get_traits_in_module_containing_item(&mut self,
4185
                                            ident: Ident,
4186
                                            ns: Namespace,
4187
                                            module: Module<'a>,
4188
                                            found_traits: &mut Vec<TraitCandidate>) {
4189
        assert!(ns == TypeNS || ns == ValueNS);
4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202
        let mut traits = module.traits.borrow_mut();
        if traits.is_none() {
            let mut collected_traits = Vec::new();
            module.for_each_child(|name, ns, binding| {
                if ns != TypeNS { return }
                if let Def::Trait(_) = binding.def() {
                    collected_traits.push((name, binding));
                }
            });
            *traits = Some(collected_traits.into_boxed_slice());
        }

        for &(trait_name, binding) in traits.as_ref().unwrap().iter() {
4203
            let module = binding.module().unwrap();
J
Jeffrey Seyfried 已提交
4204
            let mut ident = ident;
4205
            if ident.span.glob_adjust(module.expansion, binding.span.ctxt().modern()).is_none() {
J
Jeffrey Seyfried 已提交
4206 4207
                continue
            }
4208 4209 4210 4211 4212 4213 4214 4215
            if self.resolve_ident_in_module_unadjusted(
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                false,
                module.span,
            ).is_ok() {
4216 4217 4218 4219 4220 4221 4222 4223
                let import_id = match binding.kind {
                    NameBindingKind::Import { directive, .. } => {
                        self.maybe_unused_trait_imports.insert(directive.id);
                        self.add_to_glob_map(directive.id, trait_name);
                        Some(directive.id)
                    }
                    _ => None,
                };
4224
                let trait_def_id = module.def_id().unwrap();
4225 4226 4227 4228 4229
                found_traits.push(TraitCandidate { def_id: trait_def_id, import_id: import_id });
            }
        }
    }

4230 4231 4232 4233 4234 4235 4236
    /// When name resolution fails, this method can be used to look up candidate
    /// entities with the expected name. It allows filtering them using the
    /// supplied predicate (which should be used to only accept the types of
    /// definitions expected e.g. traits). The lookup spans across all crates.
    ///
    /// NOTE: The method does not look into imports, but this is not a problem,
    /// since we report the definitions (thus, the de-aliased imports).
4237 4238 4239 4240 4241 4242 4243 4244
    fn lookup_import_candidates<FilterFn>(&mut self,
                                          lookup_name: Name,
                                          namespace: Namespace,
                                          filter_fn: FilterFn)
                                          -> Vec<ImportSuggestion>
        where FilterFn: Fn(Def) -> bool
    {
        let mut candidates = Vec::new();
4245
        let mut worklist = Vec::new();
4246
        let mut seen_modules = FxHashSet();
4247 4248 4249 4250 4251
        worklist.push((self.graph_root, Vec::new(), false));

        while let Some((in_module,
                        path_segments,
                        in_module_is_extern)) = worklist.pop() {
4252
            self.populate_module_if_necessary(in_module);
4253

4254 4255 4256
            // We have to visit module children in deterministic order to avoid
            // instabilities in reported imports (#43552).
            in_module.for_each_child_stable(|ident, ns, name_binding| {
4257
                // avoid imports entirely
4258
                if name_binding.is_import() && !name_binding.is_extern_crate() { return; }
4259 4260
                // avoid non-importable candidates as well
                if !name_binding.is_importable() { return; }
4261 4262

                // collect results based on the filter function
4263
                if ident.name == lookup_name && ns == namespace {
4264
                    if filter_fn(name_binding.def()) {
4265
                        // create the path
4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277
                        let mut segms = if self.session.rust_2018() && !in_module_is_extern {
                            // crate-local absolute paths start with `crate::` in edition 2018
                            // FIXME: may also be stabilized for Rust 2015 (Issues #45477, #44660)
                            let mut full_segms = vec![
                                ast::PathSegment::from_ident(keywords::Crate.ident())
                            ];
                            full_segms.extend(path_segments.clone());
                            full_segms
                        } else {
                            path_segments.clone()
                        };

4278
                        segms.push(ast::PathSegment::from_ident(ident));
4279
                        let path = Path {
4280
                            span: name_binding.span,
4281 4282 4283 4284 4285 4286 4287 4288 4289
                            segments: segms,
                        };
                        // the entity is accessible in the following cases:
                        // 1. if it's defined in the same crate, it's always
                        // accessible (since private entities can be made public)
                        // 2. if it's defined in another crate, it's accessible
                        // only if both the module is public and the entity is
                        // declared as public (due to pruning, we don't explore
                        // outside crate private modules => no need to check this)
4290
                        if !in_module_is_extern || name_binding.vis == ty::Visibility::Public {
4291
                            candidates.push(ImportSuggestion { path: path });
4292 4293 4294 4295 4296
                        }
                    }
                }

                // collect submodules to explore
J
Jeffrey Seyfried 已提交
4297
                if let Some(module) = name_binding.module() {
4298
                    // form the path
4299
                    let mut path_segments = path_segments.clone();
4300
                    path_segments.push(ast::PathSegment::from_ident(ident));
4301

4302
                    if !in_module_is_extern || name_binding.vis == ty::Visibility::Public {
4303
                        // add the module to the lookup
4304
                        let is_extern = in_module_is_extern || name_binding.is_extern_crate();
4305
                        if seen_modules.insert(module.def_id().unwrap()) {
4306 4307
                            worklist.push((module, path_segments, is_extern));
                        }
4308 4309 4310 4311 4312
                    }
                }
            })
        }

4313
        candidates
4314 4315
    }

4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326
    fn find_module(&mut self,
                   module_def: Def)
                   -> Option<(Module<'a>, ImportSuggestion)>
    {
        let mut result = None;
        let mut worklist = Vec::new();
        let mut seen_modules = FxHashSet();
        worklist.push((self.graph_root, Vec::new()));

        while let Some((in_module, path_segments)) = worklist.pop() {
            // abort if the module is already found
4327
            if result.is_some() { break; }
4328 4329 4330

            self.populate_module_if_necessary(in_module);

4331
            in_module.for_each_child_stable(|ident, _, name_binding| {
4332 4333 4334
                // abort if the module is already found or if name_binding is private external
                if result.is_some() || !name_binding.vis.is_visible_locally() {
                    return
4335 4336 4337 4338
                }
                if let Some(module) = name_binding.module() {
                    // form the path
                    let mut path_segments = path_segments.clone();
4339
                    path_segments.push(ast::PathSegment::from_ident(ident));
4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364
                    if module.def() == Some(module_def) {
                        let path = Path {
                            span: name_binding.span,
                            segments: path_segments,
                        };
                        result = Some((module, ImportSuggestion { path: path }));
                    } else {
                        // add the module to the lookup
                        if seen_modules.insert(module.def_id().unwrap()) {
                            worklist.push((module, path_segments));
                        }
                    }
                }
            });
        }

        result
    }

    fn collect_enum_variants(&mut self, enum_def: Def) -> Option<Vec<Path>> {
        if let Def::Enum(..) = enum_def {} else {
            panic!("Non-enum def passed to collect_enum_variants: {:?}", enum_def)
        }

        self.find_module(enum_def).map(|(enum_module, enum_import_suggestion)| {
4365 4366
            self.populate_module_if_necessary(enum_module);

4367 4368 4369 4370
            let mut variants = Vec::new();
            enum_module.for_each_child_stable(|ident, _, name_binding| {
                if let Def::Variant(..) = name_binding.def() {
                    let mut segms = enum_import_suggestion.path.segments.clone();
4371
                    segms.push(ast::PathSegment::from_ident(ident));
4372 4373 4374 4375 4376 4377 4378 4379 4380 4381
                    variants.push(Path {
                        span: name_binding.span,
                        segments: segms,
                    });
                }
            });
            variants
        })
    }

4382 4383
    fn record_def(&mut self, node_id: NodeId, resolution: PathResolution) {
        debug!("(recording def) recording {:?} for {}", resolution, node_id);
4384
        if let Some(prev_res) = self.def_map.insert(node_id, resolution) {
4385
            panic!("path resolved multiple times ({:?} before, {:?} now)", prev_res, resolution);
4386
        }
4387 4388
    }

4389
    fn resolve_visibility(&mut self, vis: &ast::Visibility) -> ty::Visibility {
4390 4391 4392 4393 4394 4395
        match vis.node {
            ast::VisibilityKind::Public => ty::Visibility::Public,
            ast::VisibilityKind::Crate(..) => {
                ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX))
            }
            ast::VisibilityKind::Inherited => {
4396
                ty::Visibility::Restricted(self.current_module.normal_ancestor_id)
4397
            }
4398
            ast::VisibilityKind::Restricted { ref path, id, .. } => {
4399 4400
                // Visibilities are resolved as global by default, add starting root segment.
                let segments = path.make_root().iter().chain(path.segments.iter())
4401
                    .map(|seg| seg.ident)
4402
                    .collect::<Vec<_>>();
4403 4404 4405 4406 4407 4408 4409 4410
                let def = self.smart_resolve_path_fragment(
                    id,
                    None,
                    &segments,
                    path.span,
                    PathSource::Visibility,
                    CrateLint::SimplePath(id),
                ).base_def();
4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422
                if def == Def::Err {
                    ty::Visibility::Public
                } else {
                    let vis = ty::Visibility::Restricted(def.def_id());
                    if self.is_accessible(vis) {
                        vis
                    } else {
                        self.session.span_err(path.span, "visibilities can only be restricted \
                                                          to ancestor modules");
                        ty::Visibility::Public
                    }
                }
4423 4424 4425 4426
            }
        }
    }

4427
    fn is_accessible(&self, vis: ty::Visibility) -> bool {
4428
        vis.is_accessible_from(self.current_module.normal_ancestor_id, self)
4429 4430
    }

4431
    fn is_accessible_from(&self, vis: ty::Visibility, module: Module<'a>) -> bool {
4432
        vis.is_accessible_from(module.normal_ancestor_id, self)
4433 4434
    }

4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470
    fn report_ambiguity_error(
        &self, name: Name, span: Span, _lexical: bool,
        def1: Def, is_import1: bool, is_glob1: bool, from_expansion1: bool, span1: Span,
        def2: Def, is_import2: bool, _is_glob2: bool, _from_expansion2: bool, span2: Span,
    ) {
        let participle = |is_import: bool| if is_import { "imported" } else { "defined" };
        let msg1 = format!("`{}` could refer to the name {} here", name, participle(is_import1));
        let msg2 =
            format!("`{}` could also refer to the name {} here", name, participle(is_import2));
        let note = if from_expansion1 {
            Some(if let Def::Macro(..) = def1 {
                format!("macro-expanded {} do not shadow",
                        if is_import1 { "macro imports" } else { "macros" })
            } else {
                format!("macro-expanded {} do not shadow when used in a macro invocation path",
                        if is_import1 { "imports" } else { "items" })
            })
        } else if is_glob1 {
            Some(format!("consider adding an explicit import of `{}` to disambiguate", name))
        } else {
            None
        };

        let mut err = struct_span_err!(self.session, span, E0659, "`{}` is ambiguous", name);
        err.span_note(span1, &msg1);
        match def2 {
            Def::Macro(..) if span2.is_dummy() =>
                err.note(&format!("`{}` is also a builtin macro", name)),
            _ => err.span_note(span2, &msg2),
        };
        if let Some(note) = note {
            err.note(&note);
        }
        err.emit();
    }

4471
    fn report_errors(&mut self, krate: &Crate) {
4472
        self.report_shadowing_errors();
4473
        self.report_with_use_injections(krate);
4474
        self.report_proc_macro_import(krate);
4475
        let mut reported_spans = FxHashSet();
4476

4477 4478 4479
        for &(span_use, span_def) in &self.macro_expanded_macro_export_errors {
            let msg = "macro-expanded `macro_export` macros from the current crate \
                       cannot be referred to by absolute paths";
4480 4481 4482 4483 4484 4485
            self.session.buffer_lint_with_diagnostic(
                lint::builtin::MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS,
                CRATE_NODE_ID, span_use, msg,
                lint::builtin::BuiltinLintDiagnostics::
                    MacroExpandedMacroExportsAccessedByAbsolutePaths(span_def),
            );
4486 4487
        }

4488
        for &AmbiguityError { span, name, b1, b2, lexical } in &self.ambiguity_errors {
4489 4490 4491 4492 4493 4494 4495 4496 4497
            if reported_spans.insert(span) {
                self.report_ambiguity_error(
                    name, span, lexical,
                    b1.def(), b1.is_import(), b1.is_glob_import(),
                    b1.expansion != Mark::root(), b1.span,
                    b2.def(), b2.is_import(), b2.is_glob_import(),
                    b2.expansion != Mark::root(), b2.span,
                );
            }
4498 4499
        }

4500 4501
        for &PrivacyError(span, name, binding) in &self.privacy_errors {
            if !reported_spans.insert(span) { continue }
G
Guillaume Gomez 已提交
4502
            span_err!(self.session, span, E0603, "{} `{}` is private", binding.descr(), name);
4503 4504
        }
    }
4505

4506 4507
    fn report_with_use_injections(&mut self, krate: &Crate) {
        for UseError { mut err, candidates, node_id, better } in self.use_injections.drain(..) {
4508
            let (span, found_use) = UsePlacementFinder::check(krate, node_id);
4509
            if !candidates.is_empty() {
4510
                show_candidates(&mut err, span, &candidates, better, found_use);
4511 4512 4513 4514 4515
            }
            err.emit();
        }
    }

4516
    fn report_shadowing_errors(&mut self) {
4517
        let mut reported_errors = FxHashSet();
4518
        for binding in replace(&mut self.disallowed_shadowing, Vec::new()) {
J
Jeffrey Seyfried 已提交
4519 4520 4521
            if self.resolve_legacy_scope(&binding.parent, binding.ident, false).is_some() &&
               reported_errors.insert((binding.ident, binding.span)) {
                let msg = format!("`{}` is already in scope", binding.ident);
4522
                self.session.struct_span_err(binding.span, &msg)
4523 4524
                    .note("macro-expanded `macro_rules!`s may not shadow \
                           existing macros (see RFC 1560)")
4525 4526 4527 4528 4529
                    .emit();
            }
        }
    }

C
Cldfire 已提交
4530
    fn report_conflict<'b>(&mut self,
4531
                       parent: Module,
4532
                       ident: Ident,
4533
                       ns: Namespace,
C
Cldfire 已提交
4534 4535
                       new_binding: &NameBinding<'b>,
                       old_binding: &NameBinding<'b>) {
4536
        // Error on the second of two conflicting names
4537
        if old_binding.span.lo() > new_binding.span.lo() {
4538
            return self.report_conflict(parent, ident, ns, old_binding, new_binding);
4539 4540
        }

J
Jeffrey Seyfried 已提交
4541 4542 4543 4544
        let container = match parent.kind {
            ModuleKind::Def(Def::Mod(_), _) => "module",
            ModuleKind::Def(Def::Trait(_), _) => "trait",
            ModuleKind::Block(..) => "block",
4545 4546 4547
            _ => "enum",
        };

4548 4549 4550
        let old_noun = match old_binding.is_import() {
            true => "import",
            false => "definition",
4551 4552
        };

4553 4554 4555 4556 4557
        let new_participle = match new_binding.is_import() {
            true => "imported",
            false => "defined",
        };

D
Donato Sciarra 已提交
4558
        let (name, span) = (ident.name, self.session.source_map().def_span(new_binding.span));
4559 4560 4561 4562 4563 4564 4565

        if let Some(s) = self.name_already_seen.get(&name) {
            if s == &span {
                return;
            }
        }

4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577
        let old_kind = match (ns, old_binding.module()) {
            (ValueNS, _) => "value",
            (MacroNS, _) => "macro",
            (TypeNS, _) if old_binding.is_extern_crate() => "extern crate",
            (TypeNS, Some(module)) if module.is_normal() => "module",
            (TypeNS, Some(module)) if module.is_trait() => "trait",
            (TypeNS, _) => "type",
        };

        let msg = format!("the name `{}` is defined multiple times", name);

        let mut err = match (old_binding.is_extern_crate(), new_binding.is_extern_crate()) {
4578
            (true, true) => struct_span_err!(self.session, span, E0259, "{}", msg),
4579
            (true, _) | (_, true) => match new_binding.is_import() && old_binding.is_import() {
4580 4581
                true => struct_span_err!(self.session, span, E0254, "{}", msg),
                false => struct_span_err!(self.session, span, E0260, "{}", msg),
M
Mohit Agarwal 已提交
4582
            },
4583
            _ => match (old_binding.is_import(), new_binding.is_import()) {
4584 4585 4586
                (false, false) => struct_span_err!(self.session, span, E0428, "{}", msg),
                (true, true) => struct_span_err!(self.session, span, E0252, "{}", msg),
                _ => struct_span_err!(self.session, span, E0255, "{}", msg),
4587 4588 4589
            },
        };

4590 4591
        err.note(&format!("`{}` must be defined only once in the {} namespace of this {}",
                          name,
4592
                          ns.descr(),
4593 4594 4595
                          container));

        err.span_label(span, format!("`{}` re{} here", name, new_participle));
V
Vadim Petrochenkov 已提交
4596
        if !old_binding.span.is_dummy() {
D
Donato Sciarra 已提交
4597
            err.span_label(self.session.source_map().def_span(old_binding.span),
4598
                           format!("previous {} of the {} `{}` here", old_noun, old_kind, name));
4599
        }
4600

C
Cldfire 已提交
4601 4602
        // See https://github.com/rust-lang/rust/issues/32354
        if old_binding.is_import() || new_binding.is_import() {
V
Vadim Petrochenkov 已提交
4603
            let binding = if new_binding.is_import() && !new_binding.span.is_dummy() {
C
Cldfire 已提交
4604 4605 4606 4607 4608
                new_binding
            } else {
                old_binding
            };

D
Donato Sciarra 已提交
4609
            let cm = self.session.source_map();
C
Cldfire 已提交
4610 4611
            let rename_msg = "You can use `as` to change the binding name of the import";

4612 4613
            if let (Ok(snippet), false) = (cm.span_to_snippet(binding.span),
                                           binding.is_renamed_extern_crate()) {
4614 4615 4616 4617 4618 4619
                let suggested_name = if name.as_str().chars().next().unwrap().is_uppercase() {
                    format!("Other{}", name)
                } else {
                    format!("other_{}", name)
                };

C
Cldfire 已提交
4620 4621
                err.span_suggestion(binding.span,
                                    rename_msg,
4622
                                    if snippet.ends_with(';') {
4623
                                        format!("{} as {};",
4624
                                                &snippet[..snippet.len()-1],
4625
                                                suggested_name)
4626
                                    } else {
4627
                                        format!("{} as {}", snippet, suggested_name)
4628
                                    });
C
Cldfire 已提交
4629 4630 4631 4632 4633
            } else {
                err.span_label(binding.span, rename_msg);
            }
        }

4634
        err.emit();
4635
        self.name_already_seen.insert(name, span);
4636 4637
    }
}
4638

V
Vadim Petrochenkov 已提交
4639 4640
fn is_self_type(path: &[Ident], namespace: Namespace) -> bool {
    namespace == TypeNS && path.len() == 1 && path[0].name == keywords::SelfType.name()
4641 4642
}

V
Vadim Petrochenkov 已提交
4643 4644
fn is_self_value(path: &[Ident], namespace: Namespace) -> bool {
    namespace == ValueNS && path.len() == 1 && path[0].name == keywords::SelfValue.name()
4645 4646
}

V
Vadim Petrochenkov 已提交
4647
fn names_to_string(idents: &[Ident]) -> String {
4648
    let mut result = String::new();
4649
    for (i, ident) in idents.iter()
V
Vadim Petrochenkov 已提交
4650
                            .filter(|ident| ident.name != keywords::CrateRoot.name())
4651
                            .enumerate() {
4652 4653 4654
        if i > 0 {
            result.push_str("::");
        }
V
Vadim Petrochenkov 已提交
4655
        result.push_str(&ident.as_str());
C
corentih 已提交
4656
    }
4657 4658 4659
    result
}

4660
fn path_names_to_string(path: &Path) -> String {
4661
    names_to_string(&path.segments.iter()
V
Vadim Petrochenkov 已提交
4662
                        .map(|seg| seg.ident)
4663
                        .collect::<Vec<_>>())
4664 4665
}

4666
/// Get the path for an enum and the variant from an `ImportSuggestion` for an enum variant.
E
Esteban Küber 已提交
4667
fn import_candidate_to_paths(suggestion: &ImportSuggestion) -> (Span, String, String) {
4668 4669 4670 4671 4672 4673 4674 4675 4676 4677
    let variant_path = &suggestion.path;
    let variant_path_string = path_names_to_string(variant_path);

    let path_len = suggestion.path.segments.len();
    let enum_path = ast::Path {
        span: suggestion.path.span,
        segments: suggestion.path.segments[0..path_len - 1].to_vec(),
    };
    let enum_path_string = path_names_to_string(&enum_path);

E
Esteban Küber 已提交
4678
    (suggestion.path.span, variant_path_string, enum_path_string)
4679 4680 4681
}


4682 4683 4684
/// When an entity with a given name is not available in scope, we search for
/// entities with that name in all crates. This method allows outputting the
/// results of this search in a programmer-friendly way
4685
fn show_candidates(err: &mut DiagnosticBuilder,
4686 4687
                   // This is `None` if all placement locations are inside expansions
                   span: Option<Span>,
4688
                   candidates: &[ImportSuggestion],
4689 4690
                   better: bool,
                   found_use: bool) {
4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701

    // we want consistent results across executions, but candidates are produced
    // by iterating through a hash map, so make sure they are ordered:
    let mut path_strings: Vec<_> =
        candidates.into_iter().map(|c| path_names_to_string(&c.path)).collect();
    path_strings.sort();

    let better = if better { "better " } else { "" };
    let msg_diff = match path_strings.len() {
        1 => " is found in another module, you can import it",
        _ => "s are found in other modules, you can import them",
4702
    };
4703 4704
    let msg = format!("possible {}candidate{} into scope", better, msg_diff);

4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715
    if let Some(span) = span {
        for candidate in &mut path_strings {
            // produce an additional newline to separate the new use statement
            // from the directly following item.
            let additional_newline = if found_use {
                ""
            } else {
                "\n"
            };
            *candidate = format!("use {};\n{}", candidate, additional_newline);
        }
4716

4717 4718 4719 4720 4721 4722 4723 4724 4725
        err.span_suggestions(span, &msg, path_strings);
    } else {
        let mut msg = msg;
        msg.push(':');
        for candidate in path_strings {
            msg.push('\n');
            msg.push_str(&candidate);
        }
    }
4726 4727
}

4728
/// A somewhat inefficient routine to obtain the name of a module.
4729
fn module_to_string(module: Module) -> Option<String> {
4730 4731
    let mut names = Vec::new();

4732
    fn collect_mod(names: &mut Vec<Ident>, module: Module) {
J
Jeffrey Seyfried 已提交
4733 4734
        if let ModuleKind::Def(_, name) = module.kind {
            if let Some(parent) = module.parent {
4735
                names.push(Ident::with_empty_ctxt(name));
J
Jeffrey Seyfried 已提交
4736
                collect_mod(names, parent);
4737
            }
J
Jeffrey Seyfried 已提交
4738 4739
        } else {
            // danger, shouldn't be ident?
4740
            names.push(Ident::from_str("<opaque>"));
J
Jeffrey Seyfried 已提交
4741
            collect_mod(names, module.parent.unwrap());
4742 4743 4744 4745
        }
    }
    collect_mod(&mut names, module);

4746
    if names.is_empty() {
4747
        return None;
4748
    }
4749
    Some(names_to_string(&names.into_iter()
4750
                        .rev()
4751
                        .collect::<Vec<_>>()))
4752 4753
}

4754
fn err_path_resolution() -> PathResolution {
4755
    PathResolution::new(Def::Err)
4756 4757
}

N
Niko Matsakis 已提交
4758
#[derive(PartialEq,Copy, Clone)]
4759 4760
pub enum MakeGlobMap {
    Yes,
C
corentih 已提交
4761
    No,
4762 4763
}

4764
#[derive(Copy, Clone, Debug)]
4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777
enum CrateLint {
    /// Do not issue the lint
    No,

    /// This lint applies to some random path like `impl ::foo::Bar`
    /// or whatever. In this case, we can take the span of that path.
    SimplePath(NodeId),

    /// This lint comes from a `use` statement. In this case, what we
    /// care about really is the *root* `use` statement; e.g., if we
    /// have nested things like `use a::{b, c}`, we care about the
    /// `use a` part.
    UsePath { root_id: NodeId, root_span: Span },
4778 4779 4780 4781 4782

    /// This is the "trait item" from a fully qualified path. For example,
    /// we might be resolving  `X::Y::Z` from a path like `<T as X::Y>::Z`.
    /// The `path_span` is the span of the to the trait itself (`X::Y`).
    QPathTrait { qpath_id: NodeId, qpath_span: Span },
4783 4784
}

4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795
impl CrateLint {
    fn node_id(&self) -> Option<NodeId> {
        match *self {
            CrateLint::No => None,
            CrateLint::SimplePath(id) |
            CrateLint::UsePath { root_id: id, .. } |
            CrateLint::QPathTrait { qpath_id: id, .. } => Some(id),
        }
    }
}

4796
__build_diagnostic_array! { librustc_resolve, DIAGNOSTICS }