lib.rs 200.4 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))]
17
#![cfg_attr(not(stage0), feature(infer_outlives_requirements))]
A
Alex Crichton 已提交
18
#![feature(rustc_diagnostic_macros)]
19
#![feature(slice_sort_by_cached_key)]
20

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

175 176 177 178
/// 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.
179 180 181
fn resolve_error<'sess, 'a>(resolver: &'sess Resolver,
                            span: Span,
                            resolution_error: ResolutionError<'a>) {
N
Nick Cameron 已提交
182
    resolve_struct_error(resolver, span, resolution_error).emit();
N
Nick Cameron 已提交
183 184
}

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

D
Donato Sciarra 已提交
197
            let cm = resolver.session.source_map();
198
            match outer_def {
E
Esteban Küber 已提交
199 200 201 202 203 204
                Def::SelfTy(maybe_trait_defid, maybe_impl_defid) => {
                    if let Some(impl_span) = maybe_impl_defid.and_then(|def_id| {
                        resolver.definitions.opt_span(def_id)
                    }) {
                        err.span_label(
                            reduce_impl_span_to_impl_keyword(cm, impl_span),
E
Esteban Küber 已提交
205
                            "`Self` type implicitly declared here, by this `impl`",
E
Esteban Küber 已提交
206
                        );
207
                    }
E
Esteban Küber 已提交
208 209 210 211 212 213 214 215 216 217
                    match (maybe_trait_defid, maybe_impl_defid) {
                        (Some(_), None) => {
                            err.span_label(span, "can't use `Self` here");
                        }
                        (_, Some(_)) => {
                            err.span_label(span, "use a type here instead");
                        }
                        (None, None) => bug!("`impl` without trait nor type?"),
                    }
                    return err;
218
                },
219
                Def::TyParam(typaram_defid) => {
220 221 222 223
                    if let Some(typaram_span) = resolver.definitions.opt_span(typaram_defid) {
                        err.span_label(typaram_span, "type variable from outer function");
                    }
                },
224
                _ => {
225
                    bug!("TypeParametersFromOuterFunction should only be used with Def::SelfTy or \
226
                         Def::TyParam")
227
                }
228 229 230 231 232
            }

            // 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";
233
            if let Some((sugg_span, new_snippet)) = cm.generate_local_type_param_snippet(span) {
234
                // Suggest the modification to the user
235 236 237 238 239 240
                err.span_suggestion_with_applicability(
                    sugg_span,
                    sugg_msg,
                    new_snippet,
                    Applicability::MachineApplicable,
                );
241
            } else if let Some(sp) = cm.generate_fn_name_span(span) {
242
                err.span_label(sp, "try adding a local type parameter in this method instead");
243 244 245 246
            } else {
                err.help("try using a local type parameter instead");
            }

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

415 416 417 418 419 420
/// 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 已提交
421
/// source_map functions and this function to something more robust.
D
Donato Sciarra 已提交
422
fn reduce_impl_span_to_impl_keyword(cm: &SourceMap, impl_span: Span) -> Span {
423 424 425 426 427
    let impl_span = cm.span_until_char(impl_span, '<');
    let impl_span = cm.span_until_whitespace(impl_span);
    impl_span
}

428
#[derive(Copy, Clone, Debug)]
429
struct BindingInfo {
430
    span: Span,
431
    binding_mode: BindingMode,
432 433
}

434
/// Map from the name in a pattern to its binding mode.
435
type BindingMap = FxHashMap<Ident, BindingInfo>;
436

437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
#[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",
        }
    }
458 459
}

A
Alex Burka 已提交
460 461 462 463 464 465
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
enum AliasPossibility {
    No,
    Maybe,
}

466
#[derive(Copy, Clone, Debug)]
467 468 469 470
enum PathSource<'a> {
    // Type paths `Path`.
    Type,
    // Trait paths in bounds or impls.
A
Alex Burka 已提交
471
    Trait(AliasPossibility),
472
    // Expression paths `path`, with optional parent context.
473
    Expr(Option<&'a Expr>),
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
    // 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 已提交
491
            PathSource::Type | PathSource::Trait(_) | PathSource::Struct |
492 493 494 495 496 497 498 499 500 501 502
            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 已提交
503
            PathSource::Trait(_) | PathSource::TraitItem(..) => false,
504 505 506 507 508 509 510
        }
    }

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

    fn descr_expected(self) -> &'static str {
        match self {
            PathSource::Type => "type",
A
Alex Burka 已提交
519
            PathSource::Trait(_) => "trait",
520 521 522 523 524 525 526 527 528 529
            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"),
            },
530
            PathSource::Expr(parent) => match parent.map(|p| &p.node) {
531 532 533 534 535 536 537 538 539 540 541 542 543
                // "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(..) |
544
                Def::PrimTy(..) | Def::TyParam(..) | Def::SelfTy(..) |
O
Oliver Schneider 已提交
545
                Def::Existential(..) |
V
varkor 已提交
546
                Def::ForeignTy(..) => true,
547 548
                _ => false,
            },
A
Alex Burka 已提交
549 550 551 552 553
            PathSource::Trait(AliasPossibility::No) => match def {
                Def::Trait(..) => true,
                _ => false,
            },
            PathSource::Trait(AliasPossibility::Maybe) => match def {
554
                Def::Trait(..) => true,
A
Alex Burka 已提交
555
                Def::TraitAlias(..) => true,
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 608 609 610 611
                _ => 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 已提交
612 613
            (PathSource::Trait(_), true) => "E0404",
            (PathSource::Trait(_), false) => "E0405",
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
            (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",
        }
    }
}

630 631 632
struct UsePlacementFinder {
    target_module: NodeId,
    span: Option<Span>,
633
    found_use: bool,
634 635
}

636 637 638 639 640 641 642 643 644 645 646 647
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)
    }
}

648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668
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
669
                    if item.span.ctxt().outer().expn_info().is_none() {
670
                        self.span = Some(item.span.shrink_to_lo());
671
                        self.found_use = true;
672 673 674 675 676 677 678
                        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 ) {
679 680 681
                    if item.span.ctxt().outer().expn_info().is_none() {
                        // don't insert between attributes and an item
                        if item.attrs.is_empty() {
682
                            self.span = Some(item.span.shrink_to_lo());
683 684 685 686
                        } else {
                            // find the first attribute on the item
                            for attr in &item.attrs {
                                if self.span.map_or(true, |span| attr.span < span) {
687
                                    self.span = Some(attr.span.shrink_to_lo());
688 689 690 691
                                }
                            }
                        }
                    }
692 693 694 695 696 697
                },
            }
        }
    }
}

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

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

        // 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 已提交
789
        // Resolve the function body, potentially inside the body of an async closure
790 791
        if let IsAsync::Async { closure_id, .. } = asyncness {
            let rib_kind = ClosureRibKind(closure_id);
T
Taylor Cramer 已提交
792 793 794 795
            self.ribs[ValueNS].push(Rib::new(rib_kind));
            self.label_ribs.push(Rib::new(rib_kind));
        }

796 797 798 799 800 801 802 803 804 805
        match function_kind {
            FnKind::ItemFn(.., body) |
            FnKind::Method(.., body) => {
                self.visit_block(body);
            }
            FnKind::Closure(body) => {
                self.visit_expr(body);
            }
        };

T
Taylor Cramer 已提交
806 807 808 809 810 811
        // Leave the body of the async closure
        if asyncness.is_async() {
            self.label_ribs.pop();
            self.ribs[ValueNS].pop();
        }

812 813 814
        debug!("(resolving function) leaving function");

        self.label_ribs.pop();
J
Jeffrey Seyfried 已提交
815
        self.ribs[ValueNS].pop();
816
    }
817 818 819
    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
820 821 822
        // 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.
823
        let mut default_ban_rib = Rib::new(ForwardTyParamBanRibKind);
V
varkor 已提交
824
        let mut found_default = false;
825
        default_ban_rib.bindings.extend(generics.params.iter()
V
varkor 已提交
826
            .filter_map(|param| match param.kind {
V
varkor 已提交
827 828
                GenericParamKind::Lifetime { .. } => None,
                GenericParamKind::Type { ref default, .. } => {
V
varkor 已提交
829 830
                    found_default |= default.is_some();
                    if found_default {
V
varkor 已提交
831
                        Some((Ident::with_empty_ctxt(param.ident.name), Def::Err))
V
varkor 已提交
832 833
                    } else {
                        None
V
varkor 已提交
834 835 836
                    }
                }
            }));
837

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

V
varkor 已提交
846
                    if let Some(ref ty) = default {
847 848 849 850
                        self.ribs[TypeNS].push(default_ban_rib);
                        self.visit_ty(ty);
                        default_ban_rib = self.ribs[TypeNS].pop().unwrap();
                    }
851

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

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

C
corentih 已提交
869
                      // The kind of the rib used for type parameters.
870
                      RibKind<'a>),
871 872
}

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

M
Mark Mansi 已提交
880 881
    /// We passed through a closure scope at the given node ID.
    /// Translate upvars as appropriate.
882
    ClosureRibKind(NodeId /* func id */),
883

M
Mark Mansi 已提交
884 885 886 887
    /// 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).
888
    TraitOrImplItemRibKind,
889

M
Mark Mansi 已提交
890
    /// We passed through an item scope. Disallow upvars.
891
    ItemRibKind,
892

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

M
Mark Mansi 已提交
896
    /// We passed through a module.
897
    ModuleRibKind(Module<'a>),
898

M
Mark Mansi 已提交
899
    /// We passed through a `macro_rules!` statement
900
    MacroDefinition(DefId),
901

M
Mark Mansi 已提交
902 903 904
    /// 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.
905
    ForwardTyParamBanRibKind,
906 907
}

908
/// One local scope.
909 910 911
///
/// 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)
912 913 914
/// 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.
915 916 917 918 919
///
/// 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 已提交
920
#[derive(Debug)]
921
struct Rib<'a> {
922
    bindings: FxHashMap<Ident, Def>,
923
    kind: RibKind<'a>,
B
Brian Anderson 已提交
924
}
925

926 927
impl<'a> Rib<'a> {
    fn new(kind: RibKind<'a>) -> Rib<'a> {
928
        Rib {
929
            bindings: FxHashMap(),
930
            kind,
931
        }
932 933 934
    }
}

935 936 937 938 939
/// 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.
940 941
enum LexicalScopeBinding<'a> {
    Item(&'a NameBinding<'a>),
J
Jeffrey Seyfried 已提交
942
    Def(Def),
943 944
}

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

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

961 962 963 964 965 966 967 968 969 970 971
#[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),
}

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

J
Jeffrey Seyfried 已提交
980
enum ModuleKind {
981 982 983 984 985 986 987 988 989 990 991 992
    /// 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 已提交
993
    Block(NodeId),
994 995 996
    /// Any module with a name.
    ///
    /// This could be:
997
    ///
998 999 1000
    /// * 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 已提交
1001
    Def(Def, Name),
1002 1003
}

1004
/// One node in the tree of modules.
1005
pub struct ModuleData<'a> {
J
Jeffrey Seyfried 已提交
1006 1007
    parent: Option<Module<'a>>,
    kind: ModuleKind,
1008

1009 1010
    // The def id of the closest normal module (`mod`) ancestor (including this module).
    normal_ancestor_id: DefId,
1011

1012
    resolutions: RefCell<FxHashMap<(Ident, Namespace), &'a RefCell<NameResolution<'a>>>>,
1013
    legacy_macro_resolutions: RefCell<Vec<(Ident, MacroKind, Mark, LegacyScope<'a>, Option<Def>)>>,
1014
    macro_resolutions: RefCell<Vec<(Box<[Ident]>, Span)>>,
1015
    builtin_attrs: RefCell<Vec<(Ident, Mark, LegacyScope<'a>)>>,
1016

1017 1018 1019
    // Macro invocations that can expand into items in this module.
    unresolved_invocations: RefCell<FxHashSet<Mark>>,

1020
    no_implicit_prelude: bool,
1021

1022
    glob_importers: RefCell<Vec<&'a ImportDirective<'a>>>,
1023
    globs: RefCell<Vec<&'a ImportDirective<'a>>>,
1024

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

1028 1029 1030
    // Whether this module is populated. If not populated, any attempt to
    // access the children must be preceded with a
    // `populate_module_if_necessary` call.
1031
    populated: Cell<bool>,
1032 1033 1034

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

    expansion: Mark,
1037 1038
}

1039
type Module<'a> = &'a ModuleData<'a>;
1040

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

1066 1067 1068
    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));
1069 1070 1071
        }
    }

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

J
Jeffrey Seyfried 已提交
1081 1082 1083 1084 1085 1086 1087
    fn def(&self) -> Option<Def> {
        match self.kind {
            ModuleKind::Def(def, _) => Some(def),
            _ => None,
        }
    }

1088
    fn def_id(&self) -> Option<DefId> {
J
Jeffrey Seyfried 已提交
1089
        self.def().as_ref().map(Def::def_id)
1090 1091
    }

1092
    // `self` resolves to the first module ancestor that `is_normal`.
1093
    fn is_normal(&self) -> bool {
J
Jeffrey Seyfried 已提交
1094 1095
        match self.kind {
            ModuleKind::Def(Def::Mod(_), _) => true,
1096 1097 1098 1099 1100
            _ => false,
        }
    }

    fn is_trait(&self) -> bool {
J
Jeffrey Seyfried 已提交
1101 1102
        match self.kind {
            ModuleKind::Def(Def::Trait(_), _) => true,
1103
            _ => false,
1104
        }
B
Brian Anderson 已提交
1105
    }
1106 1107

    fn is_local(&self) -> bool {
1108
        self.normal_ancestor_id.is_local()
1109
    }
1110 1111 1112 1113

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

1116
impl<'a> fmt::Debug for ModuleData<'a> {
1117
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
J
Jeffrey Seyfried 已提交
1118
        write!(f, "{:?}", self.def())
1119 1120 1121
    }
}

M
Mark Mansi 已提交
1122
/// Records a possibly-private value, type, or module definition.
1123
#[derive(Clone, Debug)]
1124
pub struct NameBinding<'a> {
1125
    kind: NameBindingKind<'a>,
1126
    expansion: Mark,
1127
    span: Span,
1128
    vis: ty::Visibility,
1129 1130
}

1131
pub trait ToNameBinding<'a> {
J
Jeffrey Seyfried 已提交
1132
    fn to_name_binding(self, arenas: &'a ResolverArenas<'a>) -> &'a NameBinding<'a>;
1133 1134
}

J
Jeffrey Seyfried 已提交
1135 1136
impl<'a> ToNameBinding<'a> for &'a NameBinding<'a> {
    fn to_name_binding(self, _: &'a ResolverArenas<'a>) -> &'a NameBinding<'a> {
1137 1138 1139 1140
        self
    }
}

1141
#[derive(Clone, Debug)]
1142
enum NameBindingKind<'a> {
1143
    Def(Def, /* is_macro_export */ bool),
1144
    Module(Module<'a>),
1145 1146
    Import {
        binding: &'a NameBinding<'a>,
1147
        directive: &'a ImportDirective<'a>,
1148
        used: Cell<bool>,
1149
    },
1150 1151 1152 1153
    Ambiguity {
        b1: &'a NameBinding<'a>,
        b2: &'a NameBinding<'a>,
    }
1154 1155
}

1156 1157
struct PrivacyError<'a>(Span, Name, &'a NameBinding<'a>);

1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
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 已提交
1168
struct AmbiguityError<'a> {
1169
    ident: Ident,
J
Jeffrey Seyfried 已提交
1170 1171 1172 1173
    b1: &'a NameBinding<'a>,
    b2: &'a NameBinding<'a>,
}

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

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

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

1200
    fn get_macro<'b: 'a>(&self, resolver: &mut Resolver<'a, 'b>) -> Lrc<SyntaxExtension> {
1201 1202 1203
        resolver.get_macro(self.def_ignoring_ambiguity())
    }

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

    fn is_variant(&self) -> bool {
        match self.kind {
1215 1216
            NameBindingKind::Def(Def::Variant(..), _) |
            NameBindingKind::Def(Def::VariantCtor(..), _) => true,
1217 1218
            _ => false,
        }
1219 1220
    }

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

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

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

1248 1249 1250
    fn is_glob_import(&self) -> bool {
        match self.kind {
            NameBindingKind::Import { directive, .. } => directive.is_glob(),
1251
            NameBindingKind::Ambiguity { b1, .. } => b1.is_glob_import(),
1252 1253 1254 1255 1256
            _ => false,
        }
    }

    fn is_importable(&self) -> bool {
1257
        match self.def() {
1258 1259 1260 1261
            Def::AssociatedConst(..) | Def::Method(..) | Def::AssociatedTy(..) => false,
            _ => true,
        }
    }
1262 1263 1264

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

1270 1271 1272 1273 1274 1275 1276
    fn macro_kind(&self) -> Option<MacroKind> {
        match self.def_ignoring_ambiguity() {
            Def::Macro(_, kind) => Some(kind),
            _ => None,
        }
    }

1277 1278 1279
    fn descr(&self) -> &'static str {
        if self.is_extern_crate() { "extern crate" } else { self.def().kind_name() }
    }
1280

1281 1282
    // Suppose that we resolved macro invocation with `invoc_parent_expansion` to binding `binding`
    // at some expansion round `max(invoc, binding)` when they both emerged from macros.
1283 1284
    // Then this function returns `true` if `self` may emerge from a macro *after* that
    // in some later round and screw up our previously found resolution.
1285 1286
    // See more detailed explanation in
    // https://github.com/rust-lang/rust/pull/53778#issuecomment-419224049
1287 1288
    fn may_appear_after(&self, invoc_parent_expansion: Mark, binding: &NameBinding) -> bool {
        // self > max(invoc, binding) => !(self <= invoc || self <= binding)
1289 1290 1291 1292 1293 1294 1295 1296 1297
        // Expansions are partially ordered, so "may appear after" is an inversion of
        // "certainly appears before or simultaneously" and includes unordered cases.
        let self_parent_expansion = self.expansion;
        let other_parent_expansion = binding.expansion;
        let certainly_before_other_or_simultaneously =
            other_parent_expansion.is_descendant_of(self_parent_expansion);
        let certainly_before_invoc_or_simultaneously =
            invoc_parent_expansion.is_descendant_of(self_parent_expansion);
        !(certainly_before_other_or_simultaneously || certainly_before_invoc_or_simultaneously)
1298
    }
1299 1300
}

1301
/// Interns the names of the primitive types.
1302 1303 1304
///
/// 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 已提交
1305
struct PrimitiveTypeTable {
1306
    primitive_types: FxHashMap<Name, PrimTy>,
1307
}
1308

1309
impl PrimitiveTypeTable {
K
Kevin Butler 已提交
1310
    fn new() -> PrimitiveTypeTable {
1311
        let mut table = PrimitiveTypeTable { primitive_types: FxHashMap() };
C
corentih 已提交
1312

1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329
        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 已提交
1330 1331 1332
        table
    }

1333
    fn intern(&mut self, string: &str, primitive_type: PrimTy) {
1334
        self.primitive_types.insert(Symbol::intern(string), primitive_type);
1335 1336 1337
    }
}

1338
/// The main resolver class.
1339 1340
///
/// This is the visitor that walks the whole crate.
1341
pub struct Resolver<'a, 'b: 'a> {
E
Eduard Burtescu 已提交
1342
    session: &'a Session,
1343
    cstore: &'a CStore,
1344

1345
    pub definitions: Definitions,
1346

1347
    graph_root: Module<'a>,
1348

1349
    prelude: Option<Module<'a>>,
1350
    extern_prelude: FxHashSet<Name>,
1351

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

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

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

M
Mark Mansi 已提交
1362
    /// All non-determined imports.
1363
    indeterminate_imports: Vec<&'a ImportDirective<'a>>,
1364

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

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

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

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

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

M
Mark Mansi 已提交
1381
    /// The idents for the primitive types.
E
Eduard Burtescu 已提交
1382
    primitive_type_table: PrimitiveTypeTable,
1383

1384
    def_map: DefMap,
1385
    import_map: ImportMap,
1386
    pub freevars: FreevarMap,
1387
    freevars_seen: NodeMap<NodeMap<usize>>,
1388 1389
    pub export_map: ExportMap,
    pub trait_map: TraitMap,
1390

M
Mark Mansi 已提交
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
    /// 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`.
1405 1406
    block_map: NodeMap<Module<'a>>,
    module_map: FxHashMap<DefId, Module<'a>>,
J
Jeffrey Seyfried 已提交
1407
    extern_module_map: FxHashMap<(DefId, bool /* MacrosOnly? */), Module<'a>>,
1408

1409
    pub make_glob_map: bool,
1410 1411
    /// Maps imports to the names of items actually imported (this actually maps
    /// all imports, but only glob imports are actually interesting).
1412
    pub glob_map: GlobMap,
1413

1414
    used_imports: FxHashSet<(NodeId, Namespace)>,
1415
    pub maybe_unused_trait_imports: NodeSet,
1416
    pub maybe_unused_extern_crates: Vec<(NodeId, Span)>,
G
Garming Sam 已提交
1417

1418 1419 1420 1421
    /// 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>,

1422
    /// privacy errors are delayed until the end in order to deduplicate them
1423
    privacy_errors: Vec<PrivacyError<'a>>,
1424
    /// ambiguity errors are delayed for deduplication
J
Jeffrey Seyfried 已提交
1425
    ambiguity_errors: Vec<AmbiguityError<'a>>,
1426 1427
    /// `use` injections are delayed for better placement and deduplication
    use_injections: Vec<UseError<'a>>,
1428 1429
    /// `use` injections for proc macros wrongly imported with #[macro_use]
    proc_mac_errors: Vec<macros::ProcMacError>,
1430 1431
    /// crate-local macro expanded `macro_export` referred to by a module-relative path
    macro_expanded_macro_export_errors: BTreeSet<(Span, Span)>,
1432 1433

    arenas: &'a ResolverArenas<'a>,
1434
    dummy_binding: &'a NameBinding<'a>,
1435

1436
    crate_loader: &'a mut CrateLoader<'b>,
J
Jeffrey Seyfried 已提交
1437
    macro_names: FxHashSet<Ident>,
1438 1439
    builtin_macros: FxHashMap<Name, &'a NameBinding<'a>>,
    macro_use_prelude: FxHashMap<Name, &'a NameBinding<'a>>,
1440
    pub all_macros: FxHashMap<Name, Def>,
1441
    macro_map: FxHashMap<DefId, Lrc<SyntaxExtension>>,
1442 1443
    macro_defs: FxHashMap<Mark, DefId>,
    local_macro_def_scopes: FxHashMap<NodeId, Module<'a>>,
1444
    pub whitelisted_legacy_custom_derives: Vec<Name>,
1445
    pub found_unresolved_macro: bool,
1446

M
Mark Mansi 已提交
1447 1448
    /// 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 已提交
1449
    unused_macros: FxHashSet<DefId>,
E
est31 已提交
1450

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

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

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

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

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

M
Mark Mansi 已提交
1466
    /// Only used for better errors on `fn(): fn()`
1467
    current_type_ascription: Vec<Span>,
1468 1469

    injected_crate: Option<Module<'a>>,
1470 1471 1472

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

1475
/// Nothing really interesting here, it just provides memory for the rest of the crate.
1476
pub struct ResolverArenas<'a> {
1477
    modules: arena::TypedArena<ModuleData<'a>>,
1478
    local_modules: RefCell<Vec<Module<'a>>>,
1479
    name_bindings: arena::TypedArena<NameBinding<'a>>,
1480
    import_directives: arena::TypedArena<ImportDirective<'a>>,
1481
    name_resolutions: arena::TypedArena<RefCell<NameResolution<'a>>>,
1482
    invocation_data: arena::TypedArena<InvocationData<'a>>,
J
Jeffrey Seyfried 已提交
1483
    legacy_bindings: arena::TypedArena<LegacyBinding<'a>>,
1484 1485 1486
}

impl<'a> ResolverArenas<'a> {
1487
    fn alloc_module(&'a self, module: ModuleData<'a>) -> Module<'a> {
1488 1489 1490 1491 1492 1493 1494 1495
        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()
1496 1497 1498 1499
    }
    fn alloc_name_binding(&'a self, name_binding: NameBinding<'a>) -> &'a NameBinding<'a> {
        self.name_bindings.alloc(name_binding)
    }
1500 1501
    fn alloc_import_directive(&'a self, import_directive: ImportDirective<'a>)
                              -> &'a ImportDirective {
1502 1503
        self.import_directives.alloc(import_directive)
    }
1504 1505 1506
    fn alloc_name_resolution(&'a self) -> &'a RefCell<NameResolution<'a>> {
        self.name_resolutions.alloc(Default::default())
    }
1507 1508 1509
    fn alloc_invocation_data(&'a self, expansion_data: InvocationData<'a>)
                             -> &'a InvocationData<'a> {
        self.invocation_data.alloc(expansion_data)
J
Jeffrey Seyfried 已提交
1510
    }
J
Jeffrey Seyfried 已提交
1511 1512 1513
    fn alloc_legacy_binding(&'a self, binding: LegacyBinding<'a>) -> &'a LegacyBinding<'a> {
        self.legacy_bindings.alloc(binding)
    }
1514 1515
}

1516
impl<'a, 'b: 'a, 'cl: 'b> ty::DefIdTree for &'a Resolver<'b, 'cl> {
1517 1518 1519
    fn parent(self, id: DefId) -> Option<DefId> {
        match id.krate {
            LOCAL_CRATE => self.definitions.def_key(id.index).parent,
1520
            _ => self.cstore.def_key(id).parent,
1521
        }.map(|index| DefId { index, ..id })
1522 1523 1524
    }
}

1525 1526
/// 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.
1527
impl<'a, 'cl> hir::lowering::Resolver for Resolver<'a, 'cl> {
J
Jeffrey Seyfried 已提交
1528
    fn resolve_hir_path(&mut self, path: &mut hir::Path, is_value: bool) {
1529 1530 1531 1532
        self.resolve_hir_path_cb(path, is_value,
                                 |resolver, span, error| resolve_error(resolver, span, error))
    }

T
Taylor Cramer 已提交
1533 1534 1535 1536 1537
    fn resolve_str_path(
        &mut self,
        span: Span,
        crate_root: Option<&str>,
        components: &[&str],
1538
        args: Option<P<hir::GenericArgs>>,
T
Taylor Cramer 已提交
1539 1540
        is_value: bool
    ) -> hir::Path {
V
Vadim Petrochenkov 已提交
1541
        let mut segments = iter::once(keywords::CrateRoot.ident())
T
Taylor Cramer 已提交
1542 1543 1544
            .chain(
                crate_root.into_iter()
                    .chain(components.iter().cloned())
V
Vadim Petrochenkov 已提交
1545 1546
                    .map(Ident::from_str)
            ).map(hir::PathSegment::from_ident).collect::<Vec<_>>();
T
Taylor Cramer 已提交
1547

1548
        if let Some(args) = args {
V
Vadim Petrochenkov 已提交
1549
            let ident = segments.last().unwrap().ident;
T
Taylor Cramer 已提交
1550
            *segments.last_mut().unwrap() = hir::PathSegment {
V
Vadim Petrochenkov 已提交
1551
                ident,
1552
                args: Some(args),
T
Taylor Cramer 已提交
1553 1554 1555 1556
                infer_types: true,
            };
        }

1557 1558 1559
        let mut path = hir::Path {
            span,
            def: Def::Err,
T
Taylor Cramer 已提交
1560
            segments: segments.into(),
1561 1562
        };

M
Manish Goregaokar 已提交
1563
        self.resolve_hir_path(&mut path, is_value);
1564 1565 1566
        path
    }

M
Manish Goregaokar 已提交
1567 1568 1569 1570
    fn get_resolution(&mut self, id: NodeId) -> Option<PathResolution> {
        self.def_map.get(&id).cloned()
    }

1571 1572 1573 1574
    fn get_import(&mut self, id: NodeId) -> PerNS<Option<PathResolution>> {
        self.import_map.get(&id).cloned().unwrap_or_default()
    }

M
Manish Goregaokar 已提交
1575 1576 1577 1578 1579
    fn definitions(&mut self) -> &mut Definitions {
        &mut self.definitions
    }
}

1580
impl<'a, 'crateloader> Resolver<'a, 'crateloader> {
1581 1582 1583
    /// 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,
1584
    /// just that an error occurred.
M
Manish Goregaokar 已提交
1585 1586
    pub fn resolve_str_path_error(&mut self, span: Span, path_str: &str, is_value: bool)
        -> Result<hir::Path, ()> {
M
Manish Goregaokar 已提交
1587
        use std::iter;
1588
        let mut errored = false;
M
Manish Goregaokar 已提交
1589 1590 1591 1592 1593

        let mut path = if path_str.starts_with("::") {
            hir::Path {
                span,
                def: Def::Err,
1594 1595 1596
                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 已提交
1597 1598 1599 1600 1601
            }
        } else {
            hir::Path {
                span,
                def: Def::Err,
1602 1603
                segments: path_str.split("::").map(Ident::from_str)
                                  .map(hir::PathSegment::from_ident).collect(),
M
Manish Goregaokar 已提交
1604 1605 1606
            }
        };
        self.resolve_hir_path_cb(&mut path, is_value, |_, _, _| errored = true);
1607 1608 1609 1610 1611 1612 1613 1614 1615
        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)
1616 1617
        where F: for<'c, 'b> FnOnce(&'c mut Resolver, Span, ResolutionError<'b>)
    {
1618
        let namespace = if is_value { ValueNS } else { TypeNS };
1619
        let hir::Path { ref segments, span, ref mut def } = *path;
1620
        let path: Vec<_> = segments.iter().map(|seg| seg.ident).collect();
1621
        // FIXME (Manishearth): Intra doc links won't get warned of epoch changes
1622 1623 1624
        match self.resolve_path(None, &path, Some(namespace), true, span, CrateLint::No) {
            PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
                *def = module.def().unwrap(),
1625 1626
            PathResult::NonModule(path_res) if path_res.unresolved_segments() == 0 =>
                *def = path_res.base_def(),
N
Niko Matsakis 已提交
1627
            PathResult::NonModule(..) => match self.resolve_path(
1628
                None,
N
Niko Matsakis 已提交
1629 1630 1631 1632 1633 1634
                &path,
                None,
                true,
                span,
                CrateLint::No,
            ) {
1635
                PathResult::Failed(span, msg, _) => {
1636
                    error_callback(self, span, ResolutionError::FailedToResolve(&msg));
J
Jeffrey Seyfried 已提交
1637 1638 1639
                }
                _ => {}
            },
1640
            PathResult::Module(ModuleOrUniformRoot::UniformRoot(_)) |
J
Jeffrey Seyfried 已提交
1641
            PathResult::Indeterminate => unreachable!(),
1642
            PathResult::Failed(span, msg, _) => {
1643
                error_callback(self, span, ResolutionError::FailedToResolve(&msg));
1644 1645 1646 1647 1648
            }
        }
    }
}

1649
impl<'a, 'crateloader: 'a> Resolver<'a, 'crateloader> {
1650
    pub fn new(session: &'a Session,
1651
               cstore: &'a CStore,
1652
               krate: &Crate,
1653
               crate_name: &str,
1654
               make_glob_map: MakeGlobMap,
1655
               crate_loader: &'a mut CrateLoader<'crateloader>,
1656
               arenas: &'a ResolverArenas<'a>)
1657
               -> Resolver<'a, 'crateloader> {
1658 1659
        let root_def_id = DefId::local(CRATE_DEF_INDEX);
        let root_module_kind = ModuleKind::Def(Def::Mod(root_def_id), keywords::Invalid.name());
1660
        let graph_root = arenas.alloc_module(ModuleData {
1661
            no_implicit_prelude: attr::contains_name(&krate.attrs, "no_implicit_prelude"),
J
Jeffrey Seyfried 已提交
1662
            ..ModuleData::new(None, root_module_kind, root_def_id, Mark::root(), krate.span)
1663
        });
1664 1665
        let mut module_map = FxHashMap();
        module_map.insert(DefId::local(CRATE_DEF_INDEX), graph_root);
K
Kevin Butler 已提交
1666

1667
        let mut definitions = Definitions::new();
J
Jeffrey Seyfried 已提交
1668
        DefCollector::new(&mut definitions, Mark::root())
1669
            .collect_root(crate_name, session.local_crate_disambiguator());
1670

1671 1672 1673 1674 1675 1676 1677 1678 1679 1680
        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"));
            }
        }

1681
        let mut invocations = FxHashMap();
1682 1683
        invocations.insert(Mark::root(),
                           arenas.alloc_invocation_data(InvocationData::root(graph_root)));
1684

1685 1686 1687
        let mut macro_defs = FxHashMap();
        macro_defs.insert(Mark::root(), root_def_id);

K
Kevin Butler 已提交
1688
        Resolver {
1689
            session,
K
Kevin Butler 已提交
1690

1691 1692
            cstore,

1693
            definitions,
1694

K
Kevin Butler 已提交
1695 1696
            // The outermost module has def ID 0; this is not reflected in the
            // AST.
1697
            graph_root,
1698
            prelude: None,
1699
            extern_prelude,
K
Kevin Butler 已提交
1700

1701
            has_self: FxHashSet(),
1702
            field_names: FxHashMap(),
K
Kevin Butler 已提交
1703

1704
            determined_imports: Vec::new(),
1705
            indeterminate_imports: Vec::new(),
K
Kevin Butler 已提交
1706

1707
            current_module: graph_root,
J
Jeffrey Seyfried 已提交
1708 1709 1710
            ribs: PerNS {
                value_ns: vec![Rib::new(ModuleRibKind(graph_root))],
                type_ns: vec![Rib::new(ModuleRibKind(graph_root))],
1711
                macro_ns: vec![Rib::new(ModuleRibKind(graph_root))],
J
Jeffrey Seyfried 已提交
1712
            },
1713
            label_ribs: Vec::new(),
K
Kevin Butler 已提交
1714 1715 1716 1717 1718 1719

            current_trait_ref: None,
            current_self_type: None,

            primitive_type_table: PrimitiveTypeTable::new(),

1720
            def_map: NodeMap(),
1721
            import_map: NodeMap(),
1722 1723
            freevars: NodeMap(),
            freevars_seen: NodeMap(),
A
Alex Crichton 已提交
1724
            export_map: FxHashMap(),
1725
            trait_map: NodeMap(),
1726
            module_map,
1727
            block_map: NodeMap(),
J
Jeffrey Seyfried 已提交
1728
            extern_module_map: FxHashMap(),
K
Kevin Butler 已提交
1729

1730
            make_glob_map: make_glob_map == MakeGlobMap::Yes,
1731
            glob_map: NodeMap(),
G
Garming Sam 已提交
1732

1733
            used_imports: FxHashSet(),
S
Seo Sanghyeon 已提交
1734
            maybe_unused_trait_imports: NodeSet(),
1735
            maybe_unused_extern_crates: Vec::new(),
S
Seo Sanghyeon 已提交
1736

1737 1738
            unused_labels: FxHashMap(),

1739
            privacy_errors: Vec::new(),
1740
            ambiguity_errors: Vec::new(),
1741
            use_injections: Vec::new(),
1742
            proc_mac_errors: Vec::new(),
1743
            macro_expanded_macro_export_errors: BTreeSet::new(),
1744

1745
            arenas,
1746
            dummy_binding: arenas.alloc_name_binding(NameBinding {
1747
                kind: NameBindingKind::Def(Def::Err, false),
1748
                expansion: Mark::root(),
1749 1750 1751
                span: DUMMY_SP,
                vis: ty::Visibility::Public,
            }),
1752

1753
            crate_loader,
1754
            macro_names: FxHashSet(),
1755 1756
            builtin_macros: FxHashMap(),
            macro_use_prelude: FxHashMap(),
1757
            all_macros: FxHashMap(),
J
Jeffrey Seyfried 已提交
1758
            macro_map: FxHashMap(),
1759 1760
            invocations,
            macro_defs,
1761
            local_macro_def_scopes: FxHashMap(),
1762
            name_already_seen: FxHashMap(),
1763
            whitelisted_legacy_custom_derives: Vec::new(),
1764
            warned_proc_macros: FxHashSet(),
1765
            potentially_unused_imports: Vec::new(),
1766
            struct_constructors: DefIdMap(),
1767
            found_unresolved_macro: false,
E
est31 已提交
1768
            unused_macros: FxHashSet(),
1769
            current_type_ascription: Vec::new(),
1770
            injected_crate: None,
1771
            ignore_extern_prelude_feature: false,
1772 1773 1774
        }
    }

1775
    pub fn arenas() -> ResolverArenas<'a> {
1776 1777
        ResolverArenas {
            modules: arena::TypedArena::new(),
1778
            local_modules: RefCell::new(Vec::new()),
1779
            name_bindings: arena::TypedArena::new(),
1780
            import_directives: arena::TypedArena::new(),
1781
            name_resolutions: arena::TypedArena::new(),
1782
            invocation_data: arena::TypedArena::new(),
J
Jeffrey Seyfried 已提交
1783
            legacy_bindings: arena::TypedArena::new(),
K
Kevin Butler 已提交
1784 1785
        }
    }
1786

1787
    /// Runs the function on each namespace.
1788 1789 1790
    fn per_ns<F: FnMut(&mut Self, Namespace)>(&mut self, mut f: F) {
        f(self, TypeNS);
        f(self, ValueNS);
1791
        f(self, MacroNS);
J
Jeffrey Seyfried 已提交
1792 1793
    }

J
Jeffrey Seyfried 已提交
1794 1795 1796 1797 1798 1799 1800 1801 1802
    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(),
            };
        }
    }

1803 1804
    /// Entry point to crate resolution.
    pub fn resolve_crate(&mut self, krate: &Crate) {
1805
        ImportResolver { resolver: self }.finalize_imports();
1806
        self.current_module = self.graph_root;
1807
        self.finalize_current_module_macro_resolutions();
1808

1809 1810 1811
        visit::walk_crate(self, krate);

        check_unused::check_crate(self, krate);
1812
        self.report_errors(krate);
1813
        self.crate_loader.postprocess(krate);
1814 1815
    }

O
Oliver Schneider 已提交
1816 1817 1818 1819 1820
    fn new_module(
        &self,
        parent: Module<'a>,
        kind: ModuleKind,
        normal_ancestor_id: DefId,
J
Jeffrey Seyfried 已提交
1821
        expansion: Mark,
O
Oliver Schneider 已提交
1822 1823
        span: Span,
    ) -> Module<'a> {
J
Jeffrey Seyfried 已提交
1824 1825
        let module = ModuleData::new(Some(parent), kind, normal_ancestor_id, expansion, span);
        self.arenas.alloc_module(module)
1826 1827
    }

1828
    fn record_use(&mut self, ident: Ident, ns: Namespace, binding: &'a NameBinding<'a>)
1829
                  -> bool /* true if an error was reported */ {
1830
        match binding.kind {
1831
            NameBindingKind::Import { directive, binding, ref used }
J
Jeffrey Seyfried 已提交
1832
                    if !used.get() => {
1833
                used.set(true);
1834
                directive.used.set(true);
1835
                self.used_imports.insert((directive.id, ns));
1836
                self.add_to_glob_map(directive.id, ident);
1837
                self.record_use(ident, ns, binding)
1838 1839
            }
            NameBindingKind::Import { .. } => false,
1840
            NameBindingKind::Ambiguity { b1, b2 } => {
1841
                self.ambiguity_errors.push(AmbiguityError { ident, b1, b2 });
1842
                true
1843 1844
            }
            _ => false
1845
        }
1846
    }
1847

1848
    fn add_to_glob_map(&mut self, id: NodeId, ident: Ident) {
1849
        if self.make_glob_map {
1850
            self.glob_map.entry(id).or_default().insert(ident.name);
1851
        }
1852 1853
    }

1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867
    /// 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.
    /// }
    /// ```
1868
    ///
1869 1870
    /// Invariant: This must only be called during main resolution, not during
    /// import resolution.
1871
    fn resolve_ident_in_lexical_scope(&mut self,
1872
                                      mut ident: Ident,
1873
                                      ns: Namespace,
1874
                                      record_used_id: Option<NodeId>,
1875
                                      path_span: Span)
1876
                                      -> Option<LexicalScopeBinding<'a>> {
1877
        let record_used = record_used_id.is_some();
1878
        assert!(ns == TypeNS  || ns == ValueNS);
1879
        if ns == TypeNS {
1880 1881 1882
            ident.span = if ident.name == keywords::SelfType.name() {
                // FIXME(jseyfried) improve `Self` hygiene
                ident.span.with_ctxt(SyntaxContext::empty())
J
Jeffrey Seyfried 已提交
1883
            } else {
1884
                ident.span.modern()
J
Jeffrey Seyfried 已提交
1885
            }
1886 1887
        } else {
            ident = ident.modern_and_legacy();
1888
        }
1889

1890
        // Walk backwards up the ribs in scope.
J
Jeffrey Seyfried 已提交
1891
        let mut module = self.graph_root;
J
Jeffrey Seyfried 已提交
1892 1893
        for i in (0 .. self.ribs[ns].len()).rev() {
            if let Some(def) = self.ribs[ns][i].bindings.get(&ident).cloned() {
1894
                // The ident resolves to a type parameter or local variable.
1895
                return Some(LexicalScopeBinding::Def(
1896
                    self.adjust_local_def(ns, i, def, record_used, path_span)
1897
                ));
1898 1899
            }

J
Jeffrey Seyfried 已提交
1900 1901
            module = match self.ribs[ns][i].kind {
                ModuleRibKind(module) => module,
1902
                MacroDefinition(def) if def == self.macro_def(ident.span.ctxt()) => {
J
Jeffrey Seyfried 已提交
1903 1904
                    // If an invocation of this macro created `ident`, give up on `ident`
                    // and switch to `ident`'s source from the macro definition.
1905
                    ident.span.remove_mark();
J
Jeffrey Seyfried 已提交
1906
                    continue
1907
                }
J
Jeffrey Seyfried 已提交
1908 1909
                _ => continue,
            };
1910

J
Jeffrey Seyfried 已提交
1911
            let item = self.resolve_ident_in_module_unadjusted(
1912 1913 1914 1915 1916 1917
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                record_used,
                path_span,
J
Jeffrey Seyfried 已提交
1918 1919 1920 1921
            );
            if let Ok(binding) = item {
                // The ident resolves to an item.
                return Some(LexicalScopeBinding::Item(binding));
1922
            }
1923

J
Jeffrey Seyfried 已提交
1924 1925 1926 1927 1928 1929
            match module.kind {
                ModuleKind::Block(..) => {}, // We can see through blocks
                _ => break,
            }
        }

1930
        ident.span = ident.span.modern();
1931
        let mut poisoned = None;
J
Jeffrey Seyfried 已提交
1932
        loop {
1933
            let opt_module = if let Some(node_id) = record_used_id {
1934
                self.hygienic_lexical_parent_with_compatibility_fallback(module, &mut ident.span,
1935
                                                                         node_id, &mut poisoned)
1936
            } else {
1937
                self.hygienic_lexical_parent(module, &mut ident.span)
1938 1939
            };
            module = unwrap_or!(opt_module, break);
J
Jeffrey Seyfried 已提交
1940 1941 1942
            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(
1943 1944 1945 1946 1947 1948
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                record_used,
                path_span,
J
Jeffrey Seyfried 已提交
1949 1950 1951 1952
            );
            self.current_module = orig_current_module;

            match result {
1953
                Ok(binding) => {
1954
                    if let Some(node_id) = poisoned {
1955 1956
                        self.session.buffer_lint_with_diagnostic(
                            lint::builtin::PROC_MACRO_DERIVE_RESOLUTION_FALLBACK,
1957
                            node_id, ident.span,
1958 1959 1960 1961 1962 1963 1964
                            &format!("cannot find {} `{}` in this scope", ns.descr(), ident),
                            lint::builtin::BuiltinLintDiagnostics::
                                ProcMacroDeriveResolutionFallback(ident.span),
                        );
                    }
                    return Some(LexicalScopeBinding::Item(binding))
                }
1965 1966 1967
                Err(Determined) => continue,
                Err(Undetermined) =>
                    span_bug!(ident.span, "undetermined resolution during main resolution pass"),
J
Jeffrey Seyfried 已提交
1968 1969 1970
            }
        }

1971 1972 1973
        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) {
1974 1975
                if !self.session.features_untracked().extern_prelude &&
                   !self.ignore_extern_prelude_feature {
1976 1977 1978 1979 1980
                    feature_err(&self.session.parse_sess, "extern_prelude",
                                ident.span, GateIssue::Language,
                                "access to extern crates through prelude is experimental").emit();
                }

D
Douglas Campos 已提交
1981
                let crate_root = self.load_extern_prelude_crate_if_needed(ident);
1982 1983 1984 1985 1986

                let binding = (crate_root, ty::Visibility::Public,
                               ident.span, Mark::root()).to_name_binding(self.arenas);
                return Some(LexicalScopeBinding::Item(binding));
            }
1987 1988 1989 1990 1991
            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));
            }
1992
            if let Some(prelude) = self.prelude {
1993 1994 1995 1996 1997 1998 1999 2000
                if let Ok(binding) = self.resolve_ident_in_module_unadjusted(
                    ModuleOrUniformRoot::Module(prelude),
                    ident,
                    ns,
                    false,
                    false,
                    path_span,
                ) {
2001 2002
                    return Some(LexicalScopeBinding::Item(binding));
                }
J
Jeffrey Seyfried 已提交
2003 2004
            }
        }
2005 2006

        None
J
Jeffrey Seyfried 已提交
2007 2008
    }

D
Douglas Campos 已提交
2009
    fn load_extern_prelude_crate_if_needed(&mut self, ident: Ident) -> Module<'a> {
D
Douglas Campos 已提交
2010 2011 2012 2013
        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);
        crate_root
D
Douglas Campos 已提交
2014 2015
    }

2016
    fn hygienic_lexical_parent(&mut self, module: Module<'a>, span: &mut Span)
J
Jeffrey Seyfried 已提交
2017
                               -> Option<Module<'a>> {
2018 2019
        if !module.expansion.is_descendant_of(span.ctxt().outer()) {
            return Some(self.macro_def_scope(span.remove_mark()));
J
Jeffrey Seyfried 已提交
2020 2021 2022 2023 2024 2025
        }

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

2026 2027 2028
        None
    }

2029 2030 2031 2032
    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>> {
2033
        if let module @ Some(..) = self.hygienic_lexical_parent(module, span) {
2034
            return module;
2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054
        }

        // 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()) {
2055 2056
                        *poisoned = Some(node_id);
                        return module.parent;
2057 2058
                    }
                }
2059
            }
2060
        }
2061

2062
        None
2063 2064
    }

J
Jeffrey Seyfried 已提交
2065
    fn resolve_ident_in_module(&mut self,
2066
                               module: ModuleOrUniformRoot<'a>,
J
Jeffrey Seyfried 已提交
2067 2068 2069 2070 2071
                               mut ident: Ident,
                               ns: Namespace,
                               record_used: bool,
                               span: Span)
                               -> Result<&'a NameBinding<'a>, Determinacy> {
2072
        ident.span = ident.span.modern();
J
Jeffrey Seyfried 已提交
2073
        let orig_current_module = self.current_module;
2074 2075 2076 2077
        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 已提交
2078 2079
        }
        let result = self.resolve_ident_in_module_unadjusted(
2080
            module, ident, ns, false, record_used, span,
J
Jeffrey Seyfried 已提交
2081 2082 2083 2084 2085
        );
        self.current_module = orig_current_module;
        result
    }

2086 2087 2088
    fn resolve_crate_root(&mut self, ident: Ident) -> Module<'a> {
        let mut ctxt = ident.span.ctxt();
        let mark = if ident.name == keywords::DollarCrate.name() {
2089 2090 2091
            // 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.
2092 2093 2094 2095 2096 2097 2098
            // 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.
2099 2100
            while let Some(&(mark, transparency)) = iter.peek() {
                if transparency == Transparency::Opaque {
2101 2102 2103 2104 2105 2106 2107
                    result = Some(mark);
                    iter.next();
                } else {
                    break;
                }
            }
            // Then find the last legacy mark from the end if it exists.
2108 2109
            for (mark, transparency) in iter {
                if transparency == Transparency::SemiTransparent {
2110 2111 2112 2113 2114 2115
                    result = Some(mark);
                } else {
                    break;
                }
            }
            result
2116 2117 2118 2119 2120
        } else {
            ctxt = ctxt.modern();
            ctxt.adjust(Mark::root())
        };
        let module = match mark {
J
Jeffrey Seyfried 已提交
2121 2122 2123 2124 2125 2126 2127 2128
            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);
2129
        while module.span.ctxt().modern() != *ctxt {
J
Jeffrey Seyfried 已提交
2130 2131
            let parent = module.parent.unwrap_or_else(|| self.macro_def_scope(ctxt.remove_mark()));
            module = self.get_module(parent.normal_ancestor_id);
2132
        }
J
Jeffrey Seyfried 已提交
2133
        module
2134 2135
    }

2136 2137
    // AST resolution
    //
2138
    // We maintain a list of value ribs and type ribs.
2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153
    //
    // 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 已提交
2154 2155
    pub fn with_scope<F, T>(&mut self, id: NodeId, f: F) -> T
        where F: FnOnce(&mut Resolver) -> T
J
Jorge Aparicio 已提交
2156
    {
2157
        let id = self.definitions.local_def_id(id);
2158 2159
        let module = self.module_map.get(&id).cloned(); // clones a reference
        if let Some(module) = module {
2160
            // Move down in the graph.
2161
            let orig_module = replace(&mut self.current_module, module);
J
Jeffrey Seyfried 已提交
2162 2163
            self.ribs[ValueNS].push(Rib::new(ModuleRibKind(module)));
            self.ribs[TypeNS].push(Rib::new(ModuleRibKind(module)));
2164

2165
            self.finalize_current_module_macro_resolutions();
M
Manish Goregaokar 已提交
2166
            let ret = f(self);
2167

2168
            self.current_module = orig_module;
J
Jeffrey Seyfried 已提交
2169 2170
            self.ribs[ValueNS].pop();
            self.ribs[TypeNS].pop();
M
Manish Goregaokar 已提交
2171
            ret
2172
        } else {
M
Manish Goregaokar 已提交
2173
            f(self)
2174
        }
2175 2176
    }

2177 2178 2179
    /// 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 已提交
2180
    /// Stops after meeting a closure.
2181 2182 2183
    fn search_label<P, R>(&self, mut ident: Ident, pred: P) -> Option<R>
        where P: Fn(&Rib, Ident) -> Option<R>
    {
2184 2185
        for rib in self.label_ribs.iter().rev() {
            match rib.kind {
J
Jeffrey Seyfried 已提交
2186 2187 2188
                NormalRibKind => {}
                // If an invocation of this macro created `ident`, give up on `ident`
                // and switch to `ident`'s source from the macro definition.
2189
                MacroDefinition(def) => {
2190 2191
                    if def == self.macro_def(ident.span.ctxt()) {
                        ident.span.remove_mark();
2192 2193
                    }
                }
2194 2195
                _ => {
                    // Do not resolve labels across function boundary
C
corentih 已提交
2196
                    return None;
2197 2198
                }
            }
2199 2200 2201
            let r = pred(rib, ident);
            if r.is_some() {
                return r;
2202 2203 2204 2205 2206
            }
        }
        None
    }

2207
    fn resolve_item(&mut self, item: &Item) {
2208
        let name = item.ident.name;
C
corentih 已提交
2209
        debug!("(resolving item) resolving {}", name);
2210

2211
        match item.node {
2212
            ItemKind::Ty(_, ref generics) |
2213 2214
            ItemKind::Fn(_, _, ref generics, _) |
            ItemKind::Existential(_, ref generics) => {
2215
                self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind),
2216 2217 2218 2219 2220 2221 2222 2223
                                             |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 已提交
2224 2225 2226 2227 2228
                    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 {
2229
                        visit::walk_item(this, item);
A
Alexander Regueiro 已提交
2230
                    }
2231
                });
2232 2233
            }

V
Vadim Petrochenkov 已提交
2234
            ItemKind::Impl(.., ref generics, ref opt_trait_ref, ref self_type, ref impl_items) =>
2235
                self.resolve_implementation(generics,
2236
                                            opt_trait_ref,
J
Jonas Schievink 已提交
2237
                                            &self_type,
2238
                                            item.id,
2239
                                            impl_items),
2240

2241
            ItemKind::Trait(.., ref generics, ref bounds, ref trait_items) => {
2242
                // Create a new rib for the trait-wide type parameters.
2243
                self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind), |this| {
2244
                    let local_def_id = this.definitions.local_def_id(item.id);
2245
                    this.with_self_rib(Def::SelfTy(Some(local_def_id), None), |this| {
2246
                        this.visit_generics(generics);
V
varkor 已提交
2247
                        walk_list!(this, visit_param_bound, bounds);
2248 2249

                        for trait_item in trait_items {
2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264
                            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);
                                            });
                                        }
2265
                                    }
2266
                                    TraitItemKind::Method(_, _) => {
2267
                                        visit::walk_trait_item(this, trait_item)
2268 2269
                                    }
                                    TraitItemKind::Type(..) => {
2270
                                        visit::walk_trait_item(this, trait_item)
2271 2272 2273 2274 2275 2276
                                    }
                                    TraitItemKind::Macro(_) => {
                                        panic!("unexpanded macro in resolve!")
                                    }
                                };
                            });
2277 2278
                        }
                    });
2279
                });
2280 2281
            }

A
Alex Burka 已提交
2282 2283 2284 2285 2286 2287
            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 已提交
2288
                        walk_list!(this, visit_param_bound, bounds);
A
Alex Burka 已提交
2289 2290 2291 2292
                    });
                });
            }

2293
            ItemKind::Mod(_) | ItemKind::ForeignMod(_) => {
2294
                self.with_scope(item.id, |this| {
2295
                    visit::walk_item(this, item);
2296
                });
2297 2298
            }

2299 2300 2301 2302 2303 2304 2305
            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);
                    });
2306
                });
2307
            }
2308

2309
            ItemKind::Use(ref use_tree) => {
2310
                // Imports are resolved as global by default, add starting root segment.
2311
                let path = Path {
2312
                    segments: use_tree.prefix.make_root().into_iter().collect(),
2313 2314
                    span: use_tree.span,
                };
2315
                self.resolve_use_tree(item.id, use_tree.span, item.id, use_tree, &path);
W
we 已提交
2316 2317
            }

2318
            ItemKind::ExternCrate(_) | ItemKind::MacroDef(..) | ItemKind::GlobalAsm(_) => {
2319
                // do nothing, these are just around to be encoded
2320
            }
2321 2322

            ItemKind::Mac(_) => panic!("unexpanded macro in resolve!"),
2323 2324 2325
        }
    }

2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337
    /// 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,
    ) {
2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350
        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).
2351 2352 2353 2354 2355
                    self.smart_resolve_path_with_crate_lint(
                        id,
                        None,
                        &path,
                        PathSource::ImportPrefix,
2356
                        CrateLint::UsePath { root_id, root_span },
2357
                    );
2358
                } else {
2359
                    for &(ref tree, nested_id) in items {
2360
                        self.resolve_use_tree(root_id, root_span, nested_id, tree, &path);
2361 2362 2363
                    }
                }
            }
2364
            ast::UseTreeKind::Simple(..) => {},
2365 2366 2367 2368
            ast::UseTreeKind::Glob => {},
        }
    }

2369
    fn with_type_parameter_rib<'b, F>(&'b mut self, type_parameters: TypeParameters<'a, 'b>, f: F)
C
corentih 已提交
2370
        where F: FnOnce(&mut Resolver)
J
Jorge Aparicio 已提交
2371
    {
2372
        match type_parameters {
2373
            HasTypeParameters(generics, rib_kind) => {
2374
                let mut function_type_rib = Rib::new(rib_kind);
2375
                let mut seen_bindings = FxHashMap();
V
varkor 已提交
2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391
                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 已提交
2392

V
varkor 已提交
2393
                        // Plain insert (no renaming).
2394
                        let def = Def::TyParam(self.definitions.local_def_id(param.id));
V
varkor 已提交
2395 2396 2397
                            function_type_rib.bindings.insert(ident, def);
                            self.record_def(param.id, PathResolution::new(def));
                        }
V
varkor 已提交
2398
                    }
V
varkor 已提交
2399
                }
J
Jeffrey Seyfried 已提交
2400
                self.ribs[TypeNS].push(function_type_rib);
2401 2402
            }

B
Brian Anderson 已提交
2403
            NoTypeParameters => {
2404 2405 2406 2407
                // Nothing to do.
            }
        }

A
Alex Crichton 已提交
2408
        f(self);
2409

J
Jeffrey Seyfried 已提交
2410
        if let HasTypeParameters(..) = type_parameters {
J
Jeffrey Seyfried 已提交
2411
            self.ribs[TypeNS].pop();
2412 2413 2414
        }
    }

C
corentih 已提交
2415 2416
    fn with_label_rib<F>(&mut self, f: F)
        where F: FnOnce(&mut Resolver)
J
Jorge Aparicio 已提交
2417
    {
2418
        self.label_ribs.push(Rib::new(NormalRibKind));
A
Alex Crichton 已提交
2419
        f(self);
J
Jeffrey Seyfried 已提交
2420
        self.label_ribs.pop();
2421
    }
2422

2423 2424 2425 2426 2427 2428 2429 2430 2431 2432
    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 已提交
2433 2434
    fn with_constant_rib<F>(&mut self, f: F)
        where F: FnOnce(&mut Resolver)
J
Jorge Aparicio 已提交
2435
    {
J
Jeffrey Seyfried 已提交
2436
        self.ribs[ValueNS].push(Rib::new(ConstantItemRibKind));
2437
        self.label_ribs.push(Rib::new(ConstantItemRibKind));
A
Alex Crichton 已提交
2438
        f(self);
2439
        self.label_ribs.pop();
J
Jeffrey Seyfried 已提交
2440
        self.ribs[ValueNS].pop();
2441 2442
    }

2443 2444
    fn with_current_self_type<T, F>(&mut self, self_type: &Ty, f: F) -> T
        where F: FnOnce(&mut Resolver) -> T
J
Jorge Aparicio 已提交
2445
    {
2446 2447 2448 2449 2450 2451 2452
        // 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
    }

2453
    /// This is called to resolve a trait reference from an `impl` (i.e. `impl Trait for Foo`)
2454
    fn with_optional_trait_ref<T, F>(&mut self, opt_trait_ref: Option<&TraitRef>, f: F) -> T
2455
        where F: FnOnce(&mut Resolver, Option<DefId>) -> T
J
Jorge Aparicio 已提交
2456
    {
2457
        let mut new_val = None;
2458
        let mut new_id = None;
E
Eduard Burtescu 已提交
2459
        if let Some(trait_ref) = opt_trait_ref {
2460
            let path: Vec<_> = trait_ref.path.segments.iter()
V
Vadim Petrochenkov 已提交
2461
                .map(|seg| seg.ident)
2462
                .collect();
2463 2464 2465 2466 2467
            let def = self.smart_resolve_path_fragment(
                trait_ref.ref_id,
                None,
                &path,
                trait_ref.path.span,
2468 2469
                PathSource::Trait(AliasPossibility::No),
                CrateLint::SimplePath(trait_ref.ref_id),
2470
            ).base_def();
2471 2472
            if def != Def::Err {
                new_id = Some(def.def_id());
2473
                let span = trait_ref.path.span;
2474 2475 2476 2477 2478 2479 2480 2481 2482 2483
                if let PathResult::Module(ModuleOrUniformRoot::Module(module)) =
                    self.resolve_path(
                        None,
                        &path,
                        None,
                        false,
                        span,
                        CrateLint::SimplePath(trait_ref.ref_id),
                    )
                {
2484 2485
                    new_val = Some((module, trait_ref.clone()));
                }
2486
            }
2487
        }
2488
        let original_trait_ref = replace(&mut self.current_trait_ref, new_val);
2489
        let result = f(self, new_id);
2490 2491 2492 2493
        self.current_trait_ref = original_trait_ref;
        result
    }

2494 2495 2496 2497 2498 2499
    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....)
2500
        self_type_rib.bindings.insert(keywords::SelfType.ident(), self_def);
J
Jeffrey Seyfried 已提交
2501
        self.ribs[TypeNS].push(self_type_rib);
2502
        f(self);
J
Jeffrey Seyfried 已提交
2503
        self.ribs[TypeNS].pop();
2504 2505
    }

F
Felix S. Klock II 已提交
2506
    fn resolve_implementation(&mut self,
2507 2508 2509
                              generics: &Generics,
                              opt_trait_reference: &Option<TraitRef>,
                              self_type: &Ty,
2510
                              item_id: NodeId,
2511
                              impl_items: &[ImplItem]) {
2512
        // If applicable, create a rib for the type parameters.
2513
        self.with_type_parameter_rib(HasTypeParameters(generics, ItemRibKind), |this| {
2514 2515 2516 2517 2518 2519 2520
            // 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() {
2521
                            // Resolve type arguments in the trait path.
2522 2523 2524 2525 2526 2527
                            visit::walk_trait_ref(this, trait_ref);
                        }
                        // Resolve the self type.
                        this.visit_ty(self_type);
                        // Resolve the type parameters.
                        this.visit_generics(generics);
2528
                        // Resolve the items within the impl.
2529 2530 2531 2532
                        this.with_current_self_type(self_type, |this| {
                            for impl_item in impl_items {
                                this.resolve_visibility(&impl_item.vis);

2533 2534 2535 2536 2537 2538 2539 2540 2541 2542
                                // 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,
2543 2544
                                                                  ValueNS,
                                                                  impl_item.span,
2545 2546 2547 2548 2549
                                                |n, s| ConstNotMemberOfTrait(n, s));
                                            this.with_constant_rib(|this|
                                                visit::walk_impl_item(this, impl_item)
                                            );
                                        }
T
Taylor Cramer 已提交
2550
                                        ImplItemKind::Method(..) => {
2551 2552 2553
                                            // If this is a trait impl, ensure the method
                                            // exists in trait
                                            this.check_trait_item(impl_item.ident,
2554 2555
                                                                  ValueNS,
                                                                  impl_item.span,
2556 2557
                                                |n, s| MethodNotMemberOfTrait(n, s));

2558
                                            visit::walk_impl_item(this, impl_item);
2559 2560 2561 2562 2563
                                        }
                                        ImplItemKind::Type(ref ty) => {
                                            // If this is a trait impl, ensure the type
                                            // exists in trait
                                            this.check_trait_item(impl_item.ident,
2564 2565
                                                                  TypeNS,
                                                                  impl_item.span,
2566 2567
                                                |n, s| TypeNotMemberOfTrait(n, s));

2568
                                            this.visit_ty(ty);
2569
                                        }
O
Oliver Schneider 已提交
2570 2571 2572 2573
                                        ImplItemKind::Existential(ref bounds) => {
                                            // If this is a trait impl, ensure the type
                                            // exists in trait
                                            this.check_trait_item(impl_item.ident,
2574 2575
                                                                  TypeNS,
                                                                  impl_item.span,
O
Oliver Schneider 已提交
2576 2577 2578 2579 2580 2581
                                                |n, s| TypeNotMemberOfTrait(n, s));

                                            for bound in bounds {
                                                this.visit_param_bound(bound);
                                            }
                                        }
2582 2583
                                        ImplItemKind::Macro(_) =>
                                            panic!("unexpanded macro in resolve!"),
2584
                                    }
2585
                                });
2586
                            }
2587
                        });
2588
                    });
2589
                });
2590
            });
2591
        });
2592 2593
    }

2594
    fn check_trait_item<F>(&mut self, ident: Ident, ns: Namespace, span: Span, err: F)
C
corentih 已提交
2595 2596 2597 2598
        where F: FnOnce(Name, &str) -> ResolutionError
    {
        // If there is a TraitRef in scope for an impl, then the method must be in the
        // trait.
2599
        if let Some((module, _)) = self.current_trait_ref {
2600 2601 2602 2603 2604 2605 2606
            if self.resolve_ident_in_module(
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                span,
            ).is_err() {
2607 2608
                let path = &self.current_trait_ref.as_ref().unwrap().1.path;
                resolve_error(self, span, err(ident.name, &path_names_to_string(path)));
2609 2610 2611 2612
            }
        }
    }

E
Eduard Burtescu 已提交
2613
    fn resolve_local(&mut self, local: &Local) {
2614
        // Resolve the type.
2615
        walk_list!(self, visit_ty, &local.ty);
2616

2617
        // Resolve the initializer.
2618
        walk_list!(self, visit_expr, &local.init);
2619 2620

        // Resolve the pattern.
2621
        self.resolve_pattern(&local.pat, PatternSource::Let, &mut FxHashMap());
2622 2623
    }

J
John Clements 已提交
2624 2625 2626 2627
    // 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 已提交
2628
    fn binding_mode_map(&mut self, pat: &Pat) -> BindingMap {
2629
        let mut binding_map = FxHashMap();
2630 2631 2632

        pat.walk(&mut |pat| {
            if let PatKind::Ident(binding_mode, ident, ref sub_pat) = pat.node {
2633 2634
                if sub_pat.is_some() || match self.def_map.get(&pat.id).map(|res| res.base_def()) {
                    Some(Def::Local(..)) => true,
2635 2636 2637
                    _ => false,
                } {
                    let binding_info = BindingInfo { span: ident.span, binding_mode: binding_mode };
V
Vadim Petrochenkov 已提交
2638
                    binding_map.insert(ident, binding_info);
2639 2640 2641
                }
            }
            true
2642
        });
2643 2644

        binding_map
2645 2646
    }

J
John Clements 已提交
2647 2648
    // check that all of the arms in an or-pattern have exactly the
    // same set of bindings, with the same binding modes for each.
2649 2650
    fn check_consistent_bindings(&mut self, pats: &[P<Pat>]) {
        if pats.is_empty() {
C
corentih 已提交
2651
            return;
2652
        }
2653 2654 2655

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

2659
            for (j, q) in pats.iter().enumerate() {
2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670
                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,
2671 2672
                                origin: BTreeSet::new(),
                                target: BTreeSet::new(),
2673 2674 2675
                            });
                        binding_error.origin.insert(binding_i.span);
                        binding_error.target.insert(q.span);
C
corentih 已提交
2676
                    }
2677 2678 2679 2680 2681 2682 2683
                    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,
2684 2685
                                        origin: BTreeSet::new(),
                                        target: BTreeSet::new(),
2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696
                                    });
                                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 已提交
2697
                        }
2698
                    }
2699 2700
                }
            }
2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712
        }
        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));
2713
        }
2714 2715
    }

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

2719
        let mut bindings_list = FxHashMap();
2720
        for pattern in &arm.pats {
2721
            self.resolve_pattern(&pattern, PatternSource::Match, &mut bindings_list);
2722 2723
        }

2724 2725
        // This has to happen *after* we determine which pat_idents are variants
        self.check_consistent_bindings(&arm.pats);
2726

F
F001 已提交
2727 2728 2729 2730
        match arm.guard {
            Some(ast::Guard::If(ref expr)) => self.visit_expr(expr),
            _ => {}
        }
J
Jonas Schievink 已提交
2731
        self.visit_expr(&arm.body);
2732

J
Jeffrey Seyfried 已提交
2733
        self.ribs[ValueNS].pop();
2734 2735
    }

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

2742
        let mut num_macro_definition_ribs = 0;
2743 2744
        if let Some(anonymous_module) = anonymous_module {
            debug!("(resolving block) found anonymous module, moving down");
J
Jeffrey Seyfried 已提交
2745 2746
            self.ribs[ValueNS].push(Rib::new(ModuleRibKind(anonymous_module)));
            self.ribs[TypeNS].push(Rib::new(ModuleRibKind(anonymous_module)));
2747
            self.current_module = anonymous_module;
2748
            self.finalize_current_module_macro_resolutions();
2749
        } else {
J
Jeffrey Seyfried 已提交
2750
            self.ribs[ValueNS].push(Rib::new(NormalRibKind));
2751 2752 2753
        }

        // Descend into the block.
2754
        for stmt in &block.stmts {
2755
            if let ast::StmtKind::Item(ref item) = stmt.node {
2756
                if let ast::ItemKind::MacroDef(..) = item.node {
2757
                    num_macro_definition_ribs += 1;
2758 2759 2760
                    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)));
2761 2762 2763 2764 2765
                }
            }

            self.visit_stmt(stmt);
        }
2766 2767

        // Move back up.
J
Jeffrey Seyfried 已提交
2768
        self.current_module = orig_module;
2769
        for _ in 0 .. num_macro_definition_ribs {
J
Jeffrey Seyfried 已提交
2770
            self.ribs[ValueNS].pop();
2771
            self.label_ribs.pop();
2772
        }
J
Jeffrey Seyfried 已提交
2773
        self.ribs[ValueNS].pop();
2774
        if anonymous_module.is_some() {
J
Jeffrey Seyfried 已提交
2775
            self.ribs[TypeNS].pop();
G
Garming Sam 已提交
2776
        }
2777
        debug!("(resolving block) leaving block");
2778 2779
    }

2780
    fn fresh_binding(&mut self,
V
Vadim Petrochenkov 已提交
2781
                     ident: Ident,
2782 2783 2784
                     pat_id: NodeId,
                     outer_pat_id: NodeId,
                     pat_src: PatternSource,
2785
                     bindings: &mut FxHashMap<Ident, NodeId>)
2786 2787
                     -> PathResolution {
        // Add the binding to the local ribs, if it
2788 2789
        // doesn't already exist in the bindings map. (We
        // must not add it if it's in the bindings map
2790 2791
        // because that breaks the assumptions later
        // passes make about or-patterns.)
2792
        let ident = ident.modern_and_legacy();
2793
        let mut def = Def::Local(pat_id);
V
Vadim Petrochenkov 已提交
2794
        match bindings.get(&ident).cloned() {
2795 2796 2797 2798 2799 2800
            Some(id) if id == outer_pat_id => {
                // `Variant(a, a)`, error
                resolve_error(
                    self,
                    ident.span,
                    ResolutionError::IdentifierBoundMoreThanOnceInSamePattern(
V
Vadim Petrochenkov 已提交
2801
                        &ident.as_str())
2802 2803 2804 2805 2806 2807 2808 2809
                );
            }
            Some(..) if pat_src == PatternSource::FnParam => {
                // `fn f(a: u8, a: u8)`, error
                resolve_error(
                    self,
                    ident.span,
                    ResolutionError::IdentifierBoundMoreThanOnceInParameterList(
V
Vadim Petrochenkov 已提交
2810
                        &ident.as_str())
2811 2812
                );
            }
2813 2814 2815
            Some(..) if pat_src == PatternSource::Match ||
                        pat_src == PatternSource::IfLet ||
                        pat_src == PatternSource::WhileLet => {
2816 2817
                // `Variant1(a) | Variant2(a)`, ok
                // Reuse definition from the first `a`.
V
Vadim Petrochenkov 已提交
2818
                def = self.ribs[ValueNS].last_mut().unwrap().bindings[&ident];
2819 2820 2821 2822 2823 2824
            }
            Some(..) => {
                span_bug!(ident.span, "two bindings with the same name from \
                                       unexpected pattern source {:?}", pat_src);
            }
            None => {
2825
                // A completely fresh binding, add to the lists if it's valid.
V
Vadim Petrochenkov 已提交
2826 2827 2828
                if ident.name != keywords::Invalid.name() {
                    bindings.insert(ident, outer_pat_id);
                    self.ribs[ValueNS].last_mut().unwrap().bindings.insert(ident, def);
2829
                }
2830
            }
2831
        }
2832

2833
        PathResolution::new(def)
2834
    }
2835

2836 2837 2838 2839 2840
    fn resolve_pattern(&mut self,
                       pat: &Pat,
                       pat_src: PatternSource,
                       // Maps idents to the node ID for the
                       // outermost pattern that binds them.
2841
                       bindings: &mut FxHashMap<Ident, NodeId>) {
2842
        // Visit all direct subpatterns of this pattern.
2843 2844 2845
        let outer_pat_id = pat.id;
        pat.walk(&mut |pat| {
            match pat.node {
V
Vadim Petrochenkov 已提交
2846
                PatKind::Ident(bmode, ident, ref opt_pat) => {
2847 2848
                    // First try to resolve the identifier as some existing
                    // entity, then fall back to a fresh binding.
V
Vadim Petrochenkov 已提交
2849
                    let binding = self.resolve_ident_in_lexical_scope(ident, ValueNS,
2850
                                                                      None, pat.span)
2851
                                      .and_then(LexicalScopeBinding::item);
2852
                    let resolution = binding.map(NameBinding::def).and_then(|def| {
2853 2854
                        let is_syntactic_ambiguity = opt_pat.is_none() &&
                            bmode == BindingMode::ByValue(Mutability::Immutable);
2855
                        match def {
2856 2857
                            Def::StructCtor(_, CtorKind::Const) |
                            Def::VariantCtor(_, CtorKind::Const) |
2858 2859 2860
                            Def::Const(..) if is_syntactic_ambiguity => {
                                // Disambiguate in favor of a unit struct/variant
                                // or constant pattern.
2861
                                self.record_use(ident, ValueNS, binding.unwrap());
2862
                                Some(PathResolution::new(def))
2863
                            }
2864
                            Def::StructCtor(..) | Def::VariantCtor(..) |
2865
                            Def::Const(..) | Def::Static(..) => {
2866 2867 2868 2869 2870
                                // 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.
2871
                                resolve_error(
2872
                                    self,
2873 2874
                                    ident.span,
                                    ResolutionError::BindingShadowsSomethingUnacceptable(
V
Vadim Petrochenkov 已提交
2875
                                        pat_src.descr(), ident.name, binding.unwrap())
2876
                                );
2877
                                None
2878
                            }
2879
                            Def::Fn(..) | Def::Err => {
2880 2881
                                // These entities are explicitly allowed
                                // to be shadowed by fresh bindings.
2882
                                None
2883 2884 2885
                            }
                            def => {
                                span_bug!(ident.span, "unexpected definition for an \
2886
                                                       identifier in pattern: {:?}", def);
2887
                            }
2888
                        }
2889
                    }).unwrap_or_else(|| {
2890
                        self.fresh_binding(ident, pat.id, outer_pat_id, pat_src, bindings)
2891
                    });
2892 2893

                    self.record_def(pat.id, resolution);
2894 2895
                }

2896
                PatKind::TupleStruct(ref path, ..) => {
2897
                    self.smart_resolve_path(pat.id, None, path, PathSource::TupleStruct);
2898 2899
                }

2900
                PatKind::Path(ref qself, ref path) => {
2901
                    self.smart_resolve_path(pat.id, qself.as_ref(), path, PathSource::Pat);
2902 2903
                }

V
Vadim Petrochenkov 已提交
2904
                PatKind::Struct(ref path, ..) => {
2905
                    self.smart_resolve_path(pat.id, None, path, PathSource::Struct);
2906
                }
2907 2908

                _ => {}
2909
            }
2910
            true
2911
        });
2912

2913
        visit::walk_pat(self, pat);
2914 2915
    }

2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926
    // 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 {
2927 2928 2929 2930 2931 2932
        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 已提交
2933
    /// absolute paths to `crate`, so that it knows how to frame the
2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945
    /// 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 {
2946
        let segments = &path.segments.iter()
V
Vadim Petrochenkov 已提交
2947
            .map(|seg| seg.ident)
2948
            .collect::<Vec<_>>();
2949
        self.smart_resolve_path_fragment(id, qself, segments, path.span, source, crate_lint)
2950 2951 2952
    }

    fn smart_resolve_path_fragment(&mut self,
2953
                                   id: NodeId,
2954
                                   qself: Option<&QSelf>,
V
Vadim Petrochenkov 已提交
2955
                                   path: &[Ident],
2956
                                   span: Span,
2957 2958
                                   source: PathSource,
                                   crate_lint: CrateLint)
2959
                                   -> PathResolution {
2960
        let ident_span = path.last().map_or(span, |ident| ident.span);
2961 2962
        let ns = source.namespace();
        let is_expected = &|def| source.is_expected(def);
2963
        let is_enum_variant = &|def| if let Def::Variant(..) = def { true } else { false };
2964 2965 2966 2967 2968 2969 2970

        // 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());
2971
            let (base_msg, fallback_label, base_span) = if let Some(def) = def {
2972
                (format!("expected {}, found {} `{}`", expected, def.kind_name(), path_str),
2973 2974
                 format!("not a {}", expected),
                 span)
2975
            } else {
V
Vadim Petrochenkov 已提交
2976
                let item_str = path[path.len() - 1];
2977
                let item_span = path[path.len() - 1].span;
2978
                let (mod_prefix, mod_str) = if path.len() == 1 {
L
ljedrz 已提交
2979
                    (String::new(), "this scope".to_string())
V
Vadim Petrochenkov 已提交
2980
                } else if path.len() == 2 && path[0].name == keywords::CrateRoot.name() {
L
ljedrz 已提交
2981
                    (String::new(), "the crate root".to_string())
2982 2983
                } else {
                    let mod_path = &path[..path.len() - 1];
2984
                    let mod_prefix = match this.resolve_path(None, mod_path, Some(TypeNS),
2985
                                                             false, span, CrateLint::No) {
2986 2987
                        PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
                            module.def(),
2988
                        _ => None,
L
ljedrz 已提交
2989
                    }.map_or(String::new(), |def| format!("{} ", def.kind_name()));
2990 2991 2992
                    (mod_prefix, format!("`{}`", names_to_string(mod_path)))
                };
                (format!("cannot find {} `{}` in {}{}", expected, item_str, mod_prefix, mod_str),
2993 2994
                 format!("not found in {}", mod_str),
                 item_span)
2995
            };
2996
            let code = DiagnosticId::Error(code.into());
2997
            let mut err = this.session.struct_span_err_with_code(base_span, &base_msg, code);
2998 2999 3000 3001

            // Emit special messages for unresolved `Self` and `self`.
            if is_self_type(path, ns) {
                __diagnostic_used!(E0411);
3002
                err.code(DiagnosticId::Error("E0411".into()));
A
Alexander Regueiro 已提交
3003 3004 3005 3006 3007 3008
                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));
3009
                return (err, Vec::new());
3010 3011 3012
            }
            if is_self_value(path, ns) {
                __diagnostic_used!(E0424);
3013
                err.code(DiagnosticId::Error("E0424".into()));
3014
                err.span_label(span, format!("`self` value is only available in \
3015
                                               methods with `self` parameter"));
3016
                return (err, Vec::new());
3017 3018 3019
            }

            // Try to lookup the name in more relaxed fashion for better error reporting.
3020
            let ident = *path.last().unwrap();
V
Vadim Petrochenkov 已提交
3021
            let candidates = this.lookup_import_candidates(ident.name, ns, is_expected);
3022
            if candidates.is_empty() && is_expected(Def::Enum(DefId::local(CRATE_DEF_INDEX))) {
3023
                let enum_candidates =
V
Vadim Petrochenkov 已提交
3024
                    this.lookup_import_candidates(ident.name, ns, is_enum_variant);
E
Esteban Küber 已提交
3025 3026 3027 3028
                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 已提交
3029
                    if sp.is_dummy() {
3030 3031 3032 3033
                        let msg = format!("there is an enum variant `{}`, \
                                        try using `{}`?",
                                        variant_path,
                                        enum_path);
3034 3035
                        err.help(&msg);
                    } else {
3036 3037 3038 3039 3040 3041
                        err.span_suggestion_with_applicability(
                            span,
                            "you can try using the variant's enum",
                            enum_path,
                            Applicability::MachineApplicable,
                        );
3042 3043
                    }
                }
3044
            }
3045
            if path.len() == 1 && this.self_type_is_available(span) {
V
Vadim Petrochenkov 已提交
3046 3047
                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);
3048 3049
                    match candidate {
                        AssocSuggestion::Field => {
3050 3051 3052 3053 3054 3055
                            err.span_suggestion_with_applicability(
                                span,
                                "try",
                                format!("self.{}", path_str),
                                Applicability::MachineApplicable,
                            );
3056
                            if !self_is_available {
3057
                                err.span_label(span, format!("`self` value is only available in \
3058 3059 3060 3061
                                                               methods with `self` parameter"));
                            }
                        }
                        AssocSuggestion::MethodWithSelf if self_is_available => {
3062 3063 3064 3065 3066 3067
                            err.span_suggestion_with_applicability(
                                span,
                                "try",
                                format!("self.{}", path_str),
                                Applicability::MachineApplicable,
                            );
3068 3069
                        }
                        AssocSuggestion::MethodWithSelf | AssocSuggestion::AssocItem => {
3070 3071 3072 3073 3074 3075
                            err.span_suggestion_with_applicability(
                                span,
                                "try",
                                format!("Self::{}", path_str),
                                Applicability::MachineApplicable,
                            );
3076 3077
                        }
                    }
3078
                    return (err, candidates);
3079 3080 3081
                }
            }

3082 3083 3084
            let mut levenshtein_worked = false;

            // Try Levenshtein.
3085
            if let Some(candidate) = this.lookup_typo_candidate(path, ns, is_expected, span) {
3086
                err.span_label(ident_span, format!("did you mean `{}`?", candidate));
3087 3088 3089
                levenshtein_worked = true;
            }

3090 3091 3092 3093
            // Try context dependent help if relaxed lookup didn't work.
            if let Some(def) = def {
                match (def, source) {
                    (Def::Macro(..), _) => {
3094
                        err.span_label(span, format!("did you mean `{}!(...)`?", path_str));
3095
                        return (err, candidates);
3096
                    }
A
Alex Burka 已提交
3097
                    (Def::TyAlias(..), PathSource::Trait(_)) => {
3098
                        err.span_label(span, "type aliases cannot be used for traits");
3099
                        return (err, candidates);
3100
                    }
3101
                    (Def::Mod(..), PathSource::Expr(Some(parent))) => match parent.node {
3102
                        ExprKind::Field(_, ident) => {
3103
                            err.span_label(parent.span, format!("did you mean `{}::{}`?",
V
Vadim Petrochenkov 已提交
3104
                                                                 path_str, ident));
3105
                            return (err, candidates);
3106
                        }
3107
                        ExprKind::MethodCall(ref segment, ..) => {
3108
                            err.span_label(parent.span, format!("did you mean `{}::{}(...)`?",
3109
                                                                 path_str, segment.ident));
3110
                            return (err, candidates);
3111 3112 3113
                        }
                        _ => {}
                    },
3114 3115
                    (Def::Enum(..), PathSource::TupleStruct)
                        | (Def::Enum(..), PathSource::Expr(..))  => {
3116 3117 3118 3119
                        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()
3120 3121
                                    .map(|suggestion| path_names_to_string(suggestion))
                                    .map(|suggestion| format!("- `{}`", suggestion))
3122 3123 3124 3125 3126 3127 3128 3129
                                    .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 已提交
3130
                    (Def::Struct(def_id), _) if ns == ValueNS => {
3131 3132 3133 3134 3135 3136
                        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"));
3137
                            }
3138
                        } else {
3139 3140 3141 3142
                            // 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 已提交
3143
                            let cm = this.session.source_map();
3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170
                            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),
                                );
                            }
3171
                        }
3172
                        return (err, candidates);
3173
                    }
3174 3175 3176
                    (Def::Union(..), _) |
                    (Def::Variant(..), _) |
                    (Def::VariantCtor(_, CtorKind::Fictive), _) if ns == ValueNS => {
3177
                        err.span_label(span, format!("did you mean `{} {{ /* fields */ }}`?",
3178
                                                     path_str));
3179
                        return (err, candidates);
3180
                    }
E
Esteban Küber 已提交
3181
                    (Def::SelfTy(..), _) if ns == ValueNS => {
3182
                        err.span_label(span, fallback_label);
E
Esteban Küber 已提交
3183 3184
                        err.note("can't use `Self` as a constructor, you must use the \
                                  implemented struct");
3185
                        return (err, candidates);
3186
                    }
3187
                    (Def::TyAlias(_), _) | (Def::AssociatedTy(..), _) if ns == ValueNS => {
E
Esteban Küber 已提交
3188
                        err.note("can't use a type alias as a constructor");
3189
                        return (err, candidates);
E
Esteban Küber 已提交
3190
                    }
3191 3192 3193 3194
                    _ => {}
                }
            }

3195
            // Fallback label.
3196
            if !levenshtein_worked {
3197
                err.span_label(base_span, fallback_label);
3198
                this.type_ascription_suggestion(&mut err, base_span);
3199
            }
3200
            (err, candidates)
3201 3202
        };
        let report_errors = |this: &mut Self, def: Option<Def>| {
3203 3204 3205 3206 3207
            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 });
3208 3209 3210
            err_path_resolution()
        };

3211 3212 3213 3214 3215 3216 3217 3218 3219 3220
        let resolution = match self.resolve_qpath_anywhere(
            id,
            qself,
            path,
            ns,
            span,
            source.defer_to_typeck(),
            source.global_by_default(),
            crate_lint,
        ) {
3221 3222
            Some(resolution) if resolution.unresolved_segments() == 0 => {
                if is_expected(resolution.base_def()) || resolution.base_def() == Def::Err {
3223 3224
                    resolution
                } else {
3225 3226 3227
                    // Add a temporary hack to smooth the transition to new struct ctor
                    // visibility rules. See #38932 for more details.
                    let mut res = None;
3228
                    if let Def::Struct(def_id) = resolution.base_def() {
3229
                        if let Some((ctor_def, ctor_vis))
3230
                                = self.struct_constructors.get(&def_id).cloned() {
3231 3232
                            if is_expected(ctor_def) && self.is_accessible(ctor_vis) {
                                let lint = lint::builtin::LEGACY_CONSTRUCTOR_VISIBILITY;
3233
                                self.session.buffer_lint(lint, id, span,
3234
                                    "private struct constructors are not usable through \
3235
                                     re-exports in outer modules",
3236
                                );
3237 3238 3239 3240 3241
                                res = Some(PathResolution::new(ctor_def));
                            }
                        }
                    }

3242
                    res.unwrap_or_else(|| report_errors(self, Some(resolution.base_def())))
3243 3244 3245 3246 3247 3248 3249
                }
            }
            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 已提交
3250
                    let item_name = *path.last().unwrap();
3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265
                    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
    }

3266 3267 3268 3269
    fn type_ascription_suggestion(&self,
                                  err: &mut DiagnosticBuilder,
                                  base_span: Span) {
        debug!("type_ascription_suggetion {:?}", base_span);
D
Donato Sciarra 已提交
3270
        let cm = self.session.source_map();
3271 3272 3273 3274
        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
3275 3276
                sp = cm.next_point(sp);
                if let Ok(snippet) = cm.span_to_snippet(sp.to(cm.next_point(sp))) {
3277
                    debug!("snippet {:?}", snippet);
3278 3279
                    let line_sp = cm.lookup_char_pos(sp.hi()).line;
                    let line_base_sp = cm.lookup_char_pos(base_span.lo()).line;
3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300
                    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;
                }
            }
        }
    }

3301 3302
    fn self_type_is_available(&mut self, span: Span) -> bool {
        let binding = self.resolve_ident_in_lexical_scope(keywords::SelfType.ident(),
3303
                                                          TypeNS, None, span);
3304 3305 3306
        if let Some(LexicalScopeBinding::Def(def)) = binding { def != Def::Err } else { false }
    }

3307 3308
    fn self_value_is_available(&mut self, self_span: Span, path_span: Span) -> bool {
        let ident = Ident::new(keywords::SelfValue.name(), self_span);
3309
        let binding = self.resolve_ident_in_lexical_scope(ident, ValueNS, None, path_span);
3310 3311 3312 3313 3314 3315 3316
        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 已提交
3317
                              path: &[Ident],
3318 3319 3320
                              primary_ns: Namespace,
                              span: Span,
                              defer_to_typeck: bool,
3321 3322
                              global_by_default: bool,
                              crate_lint: CrateLint)
3323 3324 3325 3326 3327 3328
                              -> 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 {
3329
                match self.resolve_qpath(id, qself, path, ns, span, global_by_default, crate_lint) {
3330 3331
                    // If defer_to_typeck, then resolution > no resolution,
                    // otherwise full resolution > partial resolution > no resolution.
3332 3333
                    Some(res) if res.unresolved_segments() == 0 || defer_to_typeck =>
                        return Some(res),
3334 3335 3336 3337
                    res => if fin_res.is_none() { fin_res = res },
                };
            }
        }
3338 3339 3340 3341 3342 3343
        if primary_ns != MacroNS &&
           (self.macro_names.contains(&path[0].modern()) ||
            self.builtin_macros.get(&path[0].name).cloned()
                               .and_then(NameBinding::macro_kind) == Some(MacroKind::Bang) ||
            self.macro_use_prelude.get(&path[0].name).cloned()
                                  .and_then(NameBinding::macro_kind) == Some(MacroKind::Bang)) {
3344
            // Return some dummy definition, it's enough for error reporting.
J
Josh Driver 已提交
3345 3346 3347
            return Some(
                PathResolution::new(Def::Macro(DefId::local(CRATE_DEF_INDEX), MacroKind::Bang))
            );
3348 3349 3350 3351 3352 3353 3354 3355
        }
        fin_res
    }

    /// Handles paths that may refer to associated items.
    fn resolve_qpath(&mut self,
                     id: NodeId,
                     qself: Option<&QSelf>,
V
Vadim Petrochenkov 已提交
3356
                     path: &[Ident],
3357 3358
                     ns: Namespace,
                     span: Span,
3359 3360
                     global_by_default: bool,
                     crate_lint: CrateLint)
3361
                     -> Option<PathResolution> {
3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372
        debug!(
            "resolve_qpath(id={:?}, qself={:?}, path={:?}, \
             ns={:?}, span={:?}, global_by_default={:?})",
            id,
            qself,
            path,
            ns,
            span,
            global_by_default,
        );

3373
        if let Some(qself) = qself {
J
Jeffrey Seyfried 已提交
3374
            if qself.position == 0 {
3375 3376 3377
                // 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.
3378 3379 3380
                return Some(PathResolution::with_unresolved_segments(
                    Def::Mod(DefId::local(CRATE_DEF_INDEX)), path.len()
                ));
3381
            }
3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396

            // 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`).
3397
            let ns = if qself.position + 1 == path.len() { ns } else { TypeNS };
3398 3399 3400 3401 3402 3403
            let res = self.smart_resolve_path_fragment(
                id,
                None,
                &path[..qself.position + 1],
                span,
                PathSource::TraitItem(ns),
3404 3405 3406 3407
                CrateLint::QPathTrait {
                    qpath_id: id,
                    qpath_span: qself.path_span,
                },
3408
            );
3409 3410 3411 3412

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

N
Niko Matsakis 已提交
3418
        let result = match self.resolve_path(
3419
            None,
N
Niko Matsakis 已提交
3420 3421 3422 3423
            &path,
            Some(ns),
            true,
            span,
3424
            crate_lint,
N
Niko Matsakis 已提交
3425
        ) {
3426
            PathResult::NonModule(path_res) => path_res,
3427
            PathResult::Module(ModuleOrUniformRoot::Module(module)) if !module.is_normal() => {
J
Jeffrey Seyfried 已提交
3428
                PathResolution::new(module.def().unwrap())
V
Cleanup  
Vadim Petrochenkov 已提交
3429
            }
3430 3431 3432 3433 3434 3435
            // 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 已提交
3436 3437
            //     u8::max_value() // OK, resolves to associated function <u8>::max_value,
            //                     // not to non-existent std::u8::max_value
3438 3439 3440 3441
            // }
            //
            // Such behavior is required for backward compatibility.
            // The same fallback is used when `a` resolves to nothing.
3442 3443
            PathResult::Module(ModuleOrUniformRoot::Module(_)) |
            PathResult::Failed(..)
3444
                    if (ns == TypeNS || path.len() > 1) &&
3445
                       self.primitive_type_table.primitive_types
V
Vadim Petrochenkov 已提交
3446 3447
                           .contains_key(&path[0].name) => {
                let prim = self.primitive_type_table.primitive_types[&path[0].name];
3448
                PathResolution::with_unresolved_segments(Def::PrimTy(prim), path.len() - 1)
J
Jeffrey Seyfried 已提交
3449
            }
3450 3451
            PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
                PathResolution::new(module.def().unwrap()),
3452
            PathResult::Failed(span, msg, false) => {
J
Jeffrey Seyfried 已提交
3453 3454 3455
                resolve_error(self, span, ResolutionError::FailedToResolve(&msg));
                err_path_resolution()
            }
3456
            PathResult::Module(ModuleOrUniformRoot::UniformRoot(_)) |
3457 3458
            PathResult::Failed(..) => return None,
            PathResult::Indeterminate => bug!("indetermined path result in resolve_qpath"),
J
Jeffrey Seyfried 已提交
3459 3460
        };

3461
        if path.len() > 1 && !global_by_default && result.base_def() != Def::Err &&
V
Vadim Petrochenkov 已提交
3462 3463
           path[0].name != keywords::CrateRoot.name() &&
           path[0].name != keywords::DollarCrate.name() {
3464
            let unqualified_result = {
N
Niko Matsakis 已提交
3465
                match self.resolve_path(
3466
                    None,
N
Niko Matsakis 已提交
3467 3468 3469 3470 3471 3472
                    &[*path.last().unwrap()],
                    Some(ns),
                    false,
                    span,
                    CrateLint::No,
                ) {
3473
                    PathResult::NonModule(path_res) => path_res.base_def(),
3474 3475
                    PathResult::Module(ModuleOrUniformRoot::Module(module)) =>
                        module.def().unwrap(),
3476 3477 3478
                    _ => return Some(result),
                }
            };
3479
            if result.base_def() == unqualified_result {
3480
                let lint = lint::builtin::UNUSED_QUALIFICATIONS;
3481
                self.session.buffer_lint(lint, id, span, "unnecessary qualification")
N
Nick Cameron 已提交
3482
            }
3483
        }
N
Nick Cameron 已提交
3484

J
Jeffrey Seyfried 已提交
3485
        Some(result)
3486 3487
    }

3488 3489
    fn resolve_path(
        &mut self,
3490
        base_module: Option<ModuleOrUniformRoot<'a>>,
3491 3492 3493 3494 3495
        path: &[Ident],
        opt_ns: Option<Namespace>, // `None` indicates a module path
        record_used: bool,
        path_span: Span,
        crate_lint: CrateLint,
3496
    ) -> PathResult<'a> {
3497 3498
        self.resolve_path_with_parent_expansion(base_module, path, opt_ns, Mark::root(),
                                                record_used, path_span, crate_lint)
3499 3500
    }

3501
    fn resolve_path_with_parent_expansion(
3502 3503 3504 3505
        &mut self,
        base_module: Option<ModuleOrUniformRoot<'a>>,
        path: &[Ident],
        opt_ns: Option<Namespace>, // `None` indicates a module path
3506
        parent_expansion: Mark,
3507 3508 3509
        record_used: bool,
        path_span: Span,
        crate_lint: CrateLint,
3510
    ) -> PathResult<'a> {
3511
        let mut module = base_module;
3512
        let mut allow_super = true;
3513
        let mut second_binding = None;
J
Jeffrey Seyfried 已提交
3514

3515
        debug!(
N
Niko Matsakis 已提交
3516 3517
            "resolve_path(path={:?}, opt_ns={:?}, record_used={:?}, \
             path_span={:?}, crate_lint={:?})",
3518 3519 3520 3521 3522 3523 3524
            path,
            opt_ns,
            record_used,
            path_span,
            crate_lint,
        );

J
Jeffrey Seyfried 已提交
3525
        for (i, &ident) in path.iter().enumerate() {
3526
            debug!("resolve_path ident {} {:?}", i, ident);
J
Jeffrey Seyfried 已提交
3527 3528
            let is_last = i == path.len() - 1;
            let ns = if is_last { opt_ns.unwrap_or(TypeNS) } else { TypeNS };
V
Vadim Petrochenkov 已提交
3529
            let name = ident.name;
J
Jeffrey Seyfried 已提交
3530

3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551
            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 已提交
3552
                    let msg = "There are too many initial `super`s.".to_string();
3553
                    return PathResult::Failed(ident.span, msg, false);
J
Jeffrey Seyfried 已提交
3554
                }
3555
                if i == 0 {
3556 3557 3558 3559 3560 3561
                    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;
                    }
3562 3563 3564 3565 3566 3567 3568
                    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;
                    }
3569 3570 3571 3572 3573 3574 3575 3576
                    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 已提交
3577
                }
3578 3579
            }

3580
            // Report special messages for path segment keywords in wrong positions.
3581
            if ident.is_path_segment_keyword() && i != 0 {
3582
                let name_str = if name == keywords::CrateRoot.name() {
L
ljedrz 已提交
3583
                    "crate root".to_string()
3584 3585 3586
                } else {
                    format!("`{}`", name)
                };
V
Vadim Petrochenkov 已提交
3587
                let msg = if i == 1 && path[0].name == keywords::CrateRoot.name() {
3588 3589 3590 3591 3592 3593 3594
                    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 已提交
3595
            let binding = if let Some(module) = module {
3596
                self.resolve_ident_in_module(module, ident, ns, record_used, path_span)
3597
            } else if opt_ns == Some(MacroNS) {
3598
                assert!(ns == TypeNS);
3599
                self.resolve_lexical_macro_path_segment(ident, ns, parent_expansion, record_used,
3600 3601
                                                        record_used, false, path_span)
                                                        .map(|(binding, _)| binding)
J
Jeffrey Seyfried 已提交
3602
            } else {
3603 3604 3605
                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) {
3606
                    // we found a locally-imported or available item/module
J
Jeffrey Seyfried 已提交
3607
                    Some(LexicalScopeBinding::Item(binding)) => Ok(binding),
3608
                    // we found a local variable or type param
3609 3610
                    Some(LexicalScopeBinding::Def(def))
                            if opt_ns == Some(TypeNS) || opt_ns == Some(ValueNS) => {
3611 3612 3613
                        return PathResult::NonModule(PathResolution::with_unresolved_segments(
                            def, path.len() - 1
                        ));
J
Jeffrey Seyfried 已提交
3614
                    }
3615
                    _ => Err(if record_used { Determined } else { Undetermined }),
J
Jeffrey Seyfried 已提交
3616 3617 3618 3619 3620
                }
            };

            match binding {
                Ok(binding) => {
3621 3622 3623
                    if i == 1 {
                        second_binding = Some(binding);
                    }
3624 3625
                    let def = binding.def();
                    let maybe_assoc = opt_ns != Some(MacroNS) && PathSource::Type.is_expected(def);
J
Jeffrey Seyfried 已提交
3626
                    if let Some(next_module) = binding.module() {
3627
                        module = Some(ModuleOrUniformRoot::Module(next_module));
3628
                    } else if def == Def::ToolMod && i + 1 != path.len() {
3629 3630
                        let def = Def::NonMacroAttr(NonMacroAttrKind::Tool);
                        return PathResult::NonModule(PathResolution::new(def));
3631
                    } else if def == Def::Err {
J
Jeffrey Seyfried 已提交
3632
                        return PathResult::NonModule(err_path_resolution());
3633
                    } else if opt_ns.is_some() && (is_last || maybe_assoc) {
3634
                        self.lint_if_path_starts_with_module(
3635
                            crate_lint,
3636 3637 3638 3639
                            path,
                            path_span,
                            second_binding,
                        );
3640 3641 3642
                        return PathResult::NonModule(PathResolution::with_unresolved_segments(
                            def, path.len() - i - 1
                        ));
J
Jeffrey Seyfried 已提交
3643
                    } else {
3644
                        return PathResult::Failed(ident.span,
V
Vadim Petrochenkov 已提交
3645
                                                  format!("Not a module `{}`", ident),
3646
                                                  is_last);
J
Jeffrey Seyfried 已提交
3647 3648 3649 3650
                    }
                }
                Err(Undetermined) => return PathResult::Indeterminate,
                Err(Determined) => {
3651
                    if let Some(ModuleOrUniformRoot::Module(module)) = module {
J
Jeffrey Seyfried 已提交
3652
                        if opt_ns.is_some() && !module.is_normal() {
3653 3654 3655
                            return PathResult::NonModule(PathResolution::with_unresolved_segments(
                                module.def().unwrap(), path.len() - i
                            ));
J
Jeffrey Seyfried 已提交
3656 3657
                        }
                    }
3658 3659 3660 3661 3662
                    let module_def = match module {
                        Some(ModuleOrUniformRoot::Module(module)) => module.def(),
                        _ => None,
                    };
                    let msg = if module_def == self.graph_root.def() {
J
Jeffrey Seyfried 已提交
3663 3664
                        let is_mod = |def| match def { Def::Mod(..) => true, _ => false };
                        let mut candidates =
3665
                            self.lookup_import_candidates(name, TypeNS, is_mod);
3666 3667 3668
                        candidates.sort_by_cached_key(|c| {
                            (c.path.segments.len(), c.path.to_string())
                        });
J
Jeffrey Seyfried 已提交
3669
                        if let Some(candidate) = candidates.get(0) {
3670
                            format!("Did you mean `{}`?", candidate.path)
J
Jeffrey Seyfried 已提交
3671
                        } else {
V
Vadim Petrochenkov 已提交
3672
                            format!("Maybe a missing `extern crate {};`?", ident)
J
Jeffrey Seyfried 已提交
3673 3674
                        }
                    } else if i == 0 {
V
Vadim Petrochenkov 已提交
3675
                        format!("Use of undeclared type or module `{}`", ident)
J
Jeffrey Seyfried 已提交
3676
                    } else {
V
Vadim Petrochenkov 已提交
3677
                        format!("Could not find `{}` in `{}`", ident, path[i - 1])
J
Jeffrey Seyfried 已提交
3678
                    };
3679
                    return PathResult::Failed(ident.span, msg, is_last);
J
Jeffrey Seyfried 已提交
3680 3681
                }
            }
3682 3683
        }

3684
        self.lint_if_path_starts_with_module(crate_lint, path, path_span, second_binding);
3685

3686 3687 3688 3689
        PathResult::Module(module.unwrap_or_else(|| {
            span_bug!(path_span, "resolve_path: empty(?) path {:?} has no module", path);
        }))

3690 3691
    }

3692 3693 3694 3695 3696 3697 3698
    fn lint_if_path_starts_with_module(
        &self,
        crate_lint: CrateLint,
        path: &[Ident],
        path_span: Span,
        second_binding: Option<&NameBinding>,
    ) {
3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709
        // 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
        }

3710 3711 3712 3713
        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),
3714
            CrateLint::QPathTrait { qpath_id, qpath_span } => (qpath_id, qpath_span),
3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729
        };

        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
3730
            Some(ident) if ident.name == keywords::Crate.name() => return,
3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743
            // 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 {
3744 3745 3746
                // Careful: we still want to rewrite paths from
                // renamed extern crates.
                if let ImportDirectiveSubclass::ExternCrate(None) = d.subclass {
3747 3748 3749 3750 3751 3752
                    return
                }
            }
        }

        let diag = lint::builtin::BuiltinLintDiagnostics
3753
            ::AbsPathWithModule(diag_span);
3754
        self.session.buffer_lint_with_diagnostic(
3755
            lint::builtin::ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
3756
            diag_id, diag_span,
3757 3758 3759 3760 3761
            "absolute paths must start with `self`, `super`, \
            `crate`, or an external crate name in the 2018 edition",
            diag);
    }

3762
    // Resolve a local definition, potentially adjusting for closures.
3763 3764 3765 3766
    fn adjust_local_def(&mut self,
                        ns: Namespace,
                        rib_index: usize,
                        mut def: Def,
3767 3768
                        record_used: bool,
                        span: Span) -> Def {
3769 3770 3771 3772
        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 {
3773
            if record_used {
3774
                resolve_error(self, span, ResolutionError::ForwardDeclaredTyParam);
3775 3776 3777 3778 3779
            }
            assert_eq!(def, Def::Err);
            return Def::Err;
        }

3780
        match def {
3781
            Def::Upvar(..) => {
3782
                span_bug!(span, "unexpected {:?} in bindings", def)
3783
            }
3784
            Def::Local(node_id) => {
3785 3786
                for rib in ribs {
                    match rib.kind {
3787 3788
                        NormalRibKind | ModuleRibKind(..) | MacroDefinition(..) |
                        ForwardTyParamBanRibKind => {
3789 3790 3791 3792 3793
                            // Nothing to do. Continue.
                        }
                        ClosureRibKind(function_id) => {
                            let prev_def = def;

C
corentih 已提交
3794 3795
                            let seen = self.freevars_seen
                                           .entry(function_id)
3796
                                           .or_default();
3797
                            if let Some(&index) = seen.get(&node_id) {
3798
                                def = Def::Upvar(node_id, index, function_id);
3799 3800
                                continue;
                            }
C
corentih 已提交
3801 3802
                            let vec = self.freevars
                                          .entry(function_id)
3803
                                          .or_default();
3804
                            let depth = vec.len();
3805
                            def = Def::Upvar(node_id, depth, function_id);
3806

3807
                            if record_used {
3808 3809
                                vec.push(Freevar {
                                    def: prev_def,
3810
                                    span,
3811 3812 3813
                                });
                                seen.insert(node_id, depth);
                            }
3814
                        }
3815
                        ItemRibKind | TraitOrImplItemRibKind => {
3816 3817 3818
                            // This was an attempt to access an upvar inside a
                            // named function item. This is not allowed, so we
                            // report an error.
3819
                            if record_used {
3820 3821 3822
                                resolve_error(self, span,
                                        ResolutionError::CannotCaptureDynamicEnvironmentInFnItem);
                            }
3823
                            return Def::Err;
3824 3825 3826
                        }
                        ConstantItemRibKind => {
                            // Still doesn't deal with upvars
3827
                            if record_used {
3828 3829 3830
                                resolve_error(self, span,
                                        ResolutionError::AttemptToUseNonConstantValueInConstant);
                            }
3831
                            return Def::Err;
3832 3833 3834 3835
                        }
                    }
                }
            }
3836
            Def::TyParam(..) | Def::SelfTy(..) => {
3837 3838
                for rib in ribs {
                    match rib.kind {
3839
                        NormalRibKind | TraitOrImplItemRibKind | ClosureRibKind(..) |
3840 3841
                        ModuleRibKind(..) | MacroDefinition(..) | ForwardTyParamBanRibKind |
                        ConstantItemRibKind => {
3842 3843 3844 3845 3846
                            // Nothing to do. Continue.
                        }
                        ItemRibKind => {
                            // This was an attempt to use a type parameter outside
                            // its scope.
3847
                            if record_used {
3848
                                resolve_error(self, span,
3849
                                    ResolutionError::TypeParametersFromOuterFunction(def));
3850
                            }
3851
                            return Def::Err;
3852 3853 3854 3855 3856 3857
                        }
                    }
                }
            }
            _ => {}
        }
3858
        return def;
3859 3860
    }

3861
    fn lookup_assoc_candidate<FilterFn>(&mut self,
3862
                                        ident: Ident,
3863 3864 3865 3866 3867
                                        ns: Namespace,
                                        filter_fn: FilterFn)
                                        -> Option<AssocSuggestion>
        where FilterFn: Fn(Def) -> bool
    {
3868
        fn extract_node_id(t: &Ty) -> Option<NodeId> {
3869
            match t.node {
3870 3871
                TyKind::Path(None, _) => Some(t.id),
                TyKind::Rptr(_, ref mut_ty) => extract_node_id(&mut_ty.ty),
3872 3873 3874 3875 3876 3877 3878
                // 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,
            }
        }

3879
        // Fields are generally expected in the same contexts as locals.
3880
        if filter_fn(Def::Local(ast::DUMMY_NODE_ID)) {
3881 3882 3883
            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) {
3884 3885 3886
                    match resolution.base_def() {
                        Def::Struct(did) | Def::Union(did)
                                if resolution.unresolved_segments() == 0 => {
3887
                            if let Some(field_names) = self.field_names.get(&did) {
3888
                                if field_names.iter().any(|&field_name| ident.name == field_name) {
3889 3890
                                    return Some(AssocSuggestion::Field);
                                }
3891
                            }
3892
                        }
3893
                        _ => {}
3894
                    }
3895
                }
3896
            }
3897 3898
        }

3899
        // Look for associated items in the current trait.
3900
        if let Some((module, _)) = self.current_trait_ref {
3901 3902 3903 3904 3905 3906 3907
            if let Ok(binding) = self.resolve_ident_in_module(
                    ModuleOrUniformRoot::Module(module),
                    ident,
                    ns,
                    false,
                    module.span,
                ) {
3908
                let def = binding.def();
3909
                if filter_fn(def) {
3910
                    return Some(if self.has_self.contains(&def.def_id()) {
3911 3912 3913 3914
                        AssocSuggestion::MethodWithSelf
                    } else {
                        AssocSuggestion::AssocItem
                    });
3915 3916 3917 3918
                }
            }
        }

3919
        None
3920 3921
    }

3922
    fn lookup_typo_candidate<FilterFn>(&mut self,
V
Vadim Petrochenkov 已提交
3923
                                       path: &[Ident],
3924
                                       ns: Namespace,
3925 3926
                                       filter_fn: FilterFn,
                                       span: Span)
3927
                                       -> Option<Symbol>
3928 3929
        where FilterFn: Fn(Def) -> bool
    {
3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940
        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();
3941
        if path.len() == 1 {
3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959
            // 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
3960 3961 3962
                        if !module.no_implicit_prelude {
                            names.extend(self.extern_prelude.iter().cloned());
                            if let Some(prelude) = self.prelude {
3963 3964 3965 3966 3967 3968 3969 3970
                                add_module_candidates(prelude, &mut names);
                            }
                        }
                        break;
                    }
                }
            }
            // Add primitive types to the mix
3971
            if filter_fn(Def::PrimTy(Bool)) {
3972 3973 3974
                names.extend(
                    self.primitive_type_table.primitive_types.iter().map(|(name, _)| name)
                )
3975 3976 3977 3978
            }
        } else {
            // Search in module.
            let mod_path = &path[..path.len() - 1];
3979
            if let PathResult::Module(module) = self.resolve_path(None, mod_path, Some(TypeNS),
3980
                                                                  false, span, CrateLint::No) {
3981 3982 3983
                if let ModuleOrUniformRoot::Module(module) = module {
                    add_module_candidates(module, &mut names);
                }
3984
            }
3985
        }
3986

V
Vadim Petrochenkov 已提交
3987
        let name = path[path.len() - 1].name;
3988
        // Make sure error reporting is deterministic.
3989
        names.sort_by_cached_key(|name| name.as_str());
3990
        match find_best_match_for_name(names.iter(), &name.as_str(), None) {
3991
            Some(found) if found != name => Some(found),
3992
            _ => None,
3993
        }
3994 3995
    }

3996
    fn with_resolved_label<F>(&mut self, label: Option<Label>, id: NodeId, f: F)
3997 3998
        where F: FnOnce(&mut Resolver)
    {
3999
        if let Some(label) = label {
4000
            self.unused_labels.insert(id, label.ident.span);
4001
            let def = Def::Label(id);
4002
            self.with_label_rib(|this| {
4003 4004
                let ident = label.ident.modern_and_legacy();
                this.label_ribs.last_mut().unwrap().bindings.insert(ident, def);
4005
                f(this);
4006 4007
            });
        } else {
4008
            f(self);
4009 4010 4011
        }
    }

4012
    fn resolve_labeled_block(&mut self, label: Option<Label>, id: NodeId, block: &Block) {
4013 4014 4015
        self.with_resolved_label(label, id, |this| this.visit_block(block));
    }

4016
    fn resolve_expr(&mut self, expr: &Expr, parent: Option<&Expr>) {
P
Patrick Walton 已提交
4017 4018
        // First, record candidate traits for this expression if it could
        // result in the invocation of a method call.
4019 4020 4021

        self.record_candidate_traits_for_expr_if_necessary(expr);

4022
        // Next, resolve the node.
4023
        match expr.node {
4024 4025
            ExprKind::Path(ref qself, ref path) => {
                self.smart_resolve_path(expr.id, qself.as_ref(), path, PathSource::Expr(parent));
4026
                visit::walk_expr(self, expr);
4027 4028
            }

V
Vadim Petrochenkov 已提交
4029
            ExprKind::Struct(ref path, ..) => {
4030
                self.smart_resolve_path(expr.id, None, path, PathSource::Struct);
4031
                visit::walk_expr(self, expr);
4032 4033
            }

4034
            ExprKind::Break(Some(label), _) | ExprKind::Continue(Some(label)) => {
4035 4036 4037 4038
                let def = self.search_label(label.ident, |rib, ident| {
                    rib.bindings.get(&ident.modern_and_legacy()).cloned()
                });
                match def {
4039
                    None => {
4040 4041 4042
                        // Search again for close matches...
                        // Picks the first label that is "close enough", which is not necessarily
                        // the closest match
4043
                        let close_match = self.search_label(label.ident, |rib, ident| {
4044
                            let names = rib.bindings.iter().map(|(id, _)| &id.name);
V
Vadim Petrochenkov 已提交
4045
                            find_best_match_for_name(names, &*ident.as_str(), None)
4046
                        });
4047
                        self.record_def(expr.id, err_path_resolution());
4048
                        resolve_error(self,
4049
                                      label.ident.span,
V
Vadim Petrochenkov 已提交
4050
                                      ResolutionError::UndeclaredLabel(&label.ident.as_str(),
4051
                                                                       close_match));
4052
                    }
4053
                    Some(Def::Label(id)) => {
4054
                        // Since this def is a label, it is never read.
4055 4056
                        self.record_def(expr.id, PathResolution::new(Def::Label(id)));
                        self.unused_labels.remove(&id);
4057 4058
                    }
                    Some(_) => {
4059
                        span_bug!(expr.span, "label wasn't mapped to a label def!");
4060 4061
                    }
                }
4062 4063 4064

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

4067
            ExprKind::IfLet(ref pats, ref subexpression, ref if_block, ref optional_else) => {
4068 4069
                self.visit_expr(subexpression);

J
Jeffrey Seyfried 已提交
4070
                self.ribs[ValueNS].push(Rib::new(NormalRibKind));
4071 4072 4073 4074 4075 4076
                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);
4077
                self.visit_block(if_block);
J
Jeffrey Seyfried 已提交
4078
                self.ribs[ValueNS].pop();
4079 4080 4081 4082

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

J
Jeffrey Seyfried 已提交
4083 4084 4085
            ExprKind::Loop(ref block, label) => self.resolve_labeled_block(label, expr.id, &block),

            ExprKind::While(ref subexpression, ref block, label) => {
4086 4087 4088 4089
                self.with_resolved_label(label, expr.id, |this| {
                    this.visit_expr(subexpression);
                    this.visit_block(block);
                });
J
Jeffrey Seyfried 已提交
4090 4091
            }

4092
            ExprKind::WhileLet(ref pats, ref subexpression, ref block, label) => {
4093 4094
                self.with_resolved_label(label, expr.id, |this| {
                    this.visit_expr(subexpression);
4095
                    this.ribs[ValueNS].push(Rib::new(NormalRibKind));
4096 4097 4098 4099 4100 4101
                    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);
4102
                    this.visit_block(block);
4103
                    this.ribs[ValueNS].pop();
4104
                });
4105 4106 4107 4108
            }

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

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

J
Jeffrey Seyfried 已提交
4114
                self.ribs[ValueNS].pop();
4115 4116
            }

4117 4118
            ExprKind::Block(ref block, label) => self.resolve_labeled_block(label, block.id, block),

4119
            // Equivalent to `visit::walk_expr` + passing some context to children.
4120
            ExprKind::Field(ref subexpression, _) => {
4121
                self.resolve_expr(subexpression, Some(expr));
4122
            }
4123
            ExprKind::MethodCall(ref segment, ref arguments) => {
4124
                let mut arguments = arguments.iter();
4125
                self.resolve_expr(arguments.next().unwrap(), Some(expr));
4126 4127 4128
                for argument in arguments {
                    self.resolve_expr(argument, None);
                }
4129
                self.visit_path_segment(expr.span, segment);
4130
            }
4131

4132
            ExprKind::Call(ref callee, ref arguments) => {
4133
                self.resolve_expr(callee, Some(expr));
4134 4135 4136 4137
                for argument in arguments {
                    self.resolve_expr(argument, None);
                }
            }
4138 4139 4140 4141 4142
            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 已提交
4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155
            // 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(
4156 4157 4158
                _, IsAsync::Async { closure_id: inner_closure_id, .. }, _,
                ref fn_decl, ref body, _span,
            ) => {
T
Taylor Cramer 已提交
4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186
                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 已提交
4187
            _ => {
4188
                visit::walk_expr(self, expr);
4189 4190 4191 4192
            }
        }
    }

E
Eduard Burtescu 已提交
4193
    fn record_candidate_traits_for_expr_if_necessary(&mut self, expr: &Expr) {
4194
        match expr.node {
V
Vadim Petrochenkov 已提交
4195
            ExprKind::Field(_, ident) => {
4196 4197 4198 4199
                // 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 已提交
4200
                let traits = self.get_traits_containing_item(ident, ValueNS);
4201
                self.trait_map.insert(expr.id, traits);
4202
            }
4203
            ExprKind::MethodCall(ref segment, ..) => {
C
corentih 已提交
4204
                debug!("(recording candidate traits for expr) recording traits for {}",
4205
                       expr.id);
4206
                let traits = self.get_traits_containing_item(segment.ident, ValueNS);
4207
                self.trait_map.insert(expr.id, traits);
4208
            }
4209
            _ => {
4210 4211 4212 4213 4214
                // Nothing to do.
            }
        }
    }

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

4219
        let mut found_traits = Vec::new();
J
Jeffrey Seyfried 已提交
4220
        // Look for the current trait.
4221
        if let Some((module, _)) = self.current_trait_ref {
4222 4223 4224 4225 4226 4227 4228
            if self.resolve_ident_in_module(
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                module.span,
            ).is_ok() {
4229 4230
                let def_id = module.def_id().unwrap();
                found_traits.push(TraitCandidate { def_id: def_id, import_id: None });
E
Eduard Burtescu 已提交
4231
            }
J
Jeffrey Seyfried 已提交
4232
        }
4233

4234
        ident.span = ident.span.modern();
J
Jeffrey Seyfried 已提交
4235 4236
        let mut search_module = self.current_module;
        loop {
4237
            self.get_traits_in_module_containing_item(ident, ns, search_module, &mut found_traits);
4238 4239 4240
            search_module = unwrap_or!(
                self.hygienic_lexical_parent(search_module, &mut ident.span), break
            );
4241
        }
4242

4243 4244
        if let Some(prelude) = self.prelude {
            if !search_module.no_implicit_prelude {
4245
                self.get_traits_in_module_containing_item(ident, ns, prelude, &mut found_traits);
E
Eduard Burtescu 已提交
4246
            }
4247 4248
        }

E
Eduard Burtescu 已提交
4249
        found_traits
4250 4251
    }

4252
    fn get_traits_in_module_containing_item(&mut self,
4253
                                            ident: Ident,
4254
                                            ns: Namespace,
4255
                                            module: Module<'a>,
4256
                                            found_traits: &mut Vec<TraitCandidate>) {
4257
        assert!(ns == TypeNS || ns == ValueNS);
4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270
        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() {
4271
            let module = binding.module().unwrap();
J
Jeffrey Seyfried 已提交
4272
            let mut ident = ident;
4273
            if ident.span.glob_adjust(module.expansion, binding.span.ctxt().modern()).is_none() {
J
Jeffrey Seyfried 已提交
4274 4275
                continue
            }
4276 4277 4278 4279 4280 4281 4282 4283
            if self.resolve_ident_in_module_unadjusted(
                ModuleOrUniformRoot::Module(module),
                ident,
                ns,
                false,
                false,
                module.span,
            ).is_ok() {
4284 4285 4286 4287 4288 4289 4290 4291
                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,
                };
4292
                let trait_def_id = module.def_id().unwrap();
4293 4294 4295 4296 4297
                found_traits.push(TraitCandidate { def_id: trait_def_id, import_id: import_id });
            }
        }
    }

D
Douglas Campos 已提交
4298
    fn lookup_import_candidates_from_module<FilterFn>(&mut self,
4299 4300
                                          lookup_name: Name,
                                          namespace: Namespace,
D
Douglas Campos 已提交
4301
                                          start_module: &'a ModuleData<'a>,
D
Douglas Campos 已提交
4302
                                          crate_name: Ident,
4303 4304 4305 4306 4307
                                          filter_fn: FilterFn)
                                          -> Vec<ImportSuggestion>
        where FilterFn: Fn(Def) -> bool
    {
        let mut candidates = Vec::new();
4308
        let mut worklist = Vec::new();
4309
        let mut seen_modules = FxHashSet();
4310
        let not_local_module = crate_name != keywords::Crate.ident();
D
Douglas Campos 已提交
4311
        worklist.push((start_module, Vec::<ast::PathSegment>::new(), not_local_module));
4312 4313 4314 4315

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

4318 4319 4320
            // 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| {
4321
                // avoid imports entirely
4322
                if name_binding.is_import() && !name_binding.is_extern_crate() { return; }
4323 4324
                // avoid non-importable candidates as well
                if !name_binding.is_importable() { return; }
4325 4326

                // collect results based on the filter function
4327
                if ident.name == lookup_name && ns == namespace {
4328
                    if filter_fn(name_binding.def()) {
4329
                        // create the path
4330
                        let mut segms = path_segments.clone();
4331
                        if self.session.rust_2018() {
4332 4333
                            // crate-local absolute paths start with `crate::` in edition 2018
                            // FIXME: may also be stabilized for Rust 2015 (Issues #45477, #44660)
D
Douglas Campos 已提交
4334 4335 4336
                            segms.insert(
                                0, ast::PathSegment::from_ident(crate_name)
                            );
4337
                        }
4338

4339
                        segms.push(ast::PathSegment::from_ident(ident));
4340
                        let path = Path {
4341
                            span: name_binding.span,
4342 4343 4344 4345 4346 4347 4348 4349 4350
                            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)
4351
                        if !in_module_is_extern || name_binding.vis == ty::Visibility::Public {
4352
                            candidates.push(ImportSuggestion { path: path });
4353 4354 4355 4356 4357
                        }
                    }
                }

                // collect submodules to explore
J
Jeffrey Seyfried 已提交
4358
                if let Some(module) = name_binding.module() {
4359
                    // form the path
4360
                    let mut path_segments = path_segments.clone();
4361
                    path_segments.push(ast::PathSegment::from_ident(ident));
4362

4363 4364
                    let is_extern_crate_that_also_appears_in_prelude =
                        name_binding.is_extern_crate() &&
D
Douglas Campos 已提交
4365
                        self.session.rust_2018();
4366 4367 4368 4369

                    let is_visible_to_user =
                        !in_module_is_extern || name_binding.vis == ty::Visibility::Public;

4370
                    if !is_extern_crate_that_also_appears_in_prelude && is_visible_to_user {
4371
                        // add the module to the lookup
4372
                        let is_extern = in_module_is_extern || name_binding.is_extern_crate();
4373
                        if seen_modules.insert(module.def_id().unwrap()) {
4374 4375
                            worklist.push((module, path_segments, is_extern));
                        }
4376 4377 4378 4379 4380
                    }
                }
            })
        }

4381
        candidates
4382 4383
    }

D
Douglas Campos 已提交
4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397
    /// 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).
    fn lookup_import_candidates<FilterFn>(&mut self,
                                          lookup_name: Name,
                                          namespace: Namespace,
                                          filter_fn: FilterFn)
                                          -> Vec<ImportSuggestion>
        where FilterFn: Fn(Def) -> bool
    {
4398 4399 4400 4401
        let mut suggestions = vec![];

        suggestions.extend(
            self.lookup_import_candidates_from_module(
D
Douglas Campos 已提交
4402
                lookup_name, namespace, self.graph_root, keywords::Crate.ident(), &filter_fn
4403 4404 4405 4406 4407 4408 4409
            )
        );

        if self.session.features_untracked().extern_prelude {
            let extern_prelude_names = self.extern_prelude.clone();
            for &krate_name in extern_prelude_names.iter() {
                let krate_ident = Ident::with_empty_ctxt(krate_name);
D
Douglas Campos 已提交
4410
                let external_prelude_module = self.load_extern_prelude_crate_if_needed(krate_ident);
4411 4412 4413

                suggestions.extend(
                    self.lookup_import_candidates_from_module(
D
Douglas Campos 已提交
4414
                        lookup_name, namespace, external_prelude_module, krate_ident, &filter_fn
4415 4416 4417 4418 4419 4420
                    )
                );
            }
        }

        suggestions
D
Douglas Campos 已提交
4421 4422
    }

4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433
    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
4434
            if result.is_some() { break; }
4435 4436 4437

            self.populate_module_if_necessary(in_module);

4438
            in_module.for_each_child_stable(|ident, _, name_binding| {
4439 4440 4441
                // 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
4442 4443 4444 4445
                }
                if let Some(module) = name_binding.module() {
                    // form the path
                    let mut path_segments = path_segments.clone();
4446
                    path_segments.push(ast::PathSegment::from_ident(ident));
4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471
                    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)| {
4472 4473
            self.populate_module_if_necessary(enum_module);

4474 4475 4476 4477
            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();
4478
                    segms.push(ast::PathSegment::from_ident(ident));
4479 4480 4481 4482 4483 4484 4485 4486 4487 4488
                    variants.push(Path {
                        span: name_binding.span,
                        segments: segms,
                    });
                }
            });
            variants
        })
    }

4489 4490
    fn record_def(&mut self, node_id: NodeId, resolution: PathResolution) {
        debug!("(recording def) recording {:?} for {}", resolution, node_id);
4491
        if let Some(prev_res) = self.def_map.insert(node_id, resolution) {
4492
            panic!("path resolved multiple times ({:?} before, {:?} now)", prev_res, resolution);
4493
        }
4494 4495
    }

4496
    fn resolve_visibility(&mut self, vis: &ast::Visibility) -> ty::Visibility {
4497 4498 4499 4500 4501 4502
        match vis.node {
            ast::VisibilityKind::Public => ty::Visibility::Public,
            ast::VisibilityKind::Crate(..) => {
                ty::Visibility::Restricted(DefId::local(CRATE_DEF_INDEX))
            }
            ast::VisibilityKind::Inherited => {
4503
                ty::Visibility::Restricted(self.current_module.normal_ancestor_id)
4504
            }
4505
            ast::VisibilityKind::Restricted { ref path, id, .. } => {
4506 4507
                // Visibilities are resolved as global by default, add starting root segment.
                let segments = path.make_root().iter().chain(path.segments.iter())
4508
                    .map(|seg| seg.ident)
4509
                    .collect::<Vec<_>>();
4510 4511 4512 4513 4514 4515 4516 4517
                let def = self.smart_resolve_path_fragment(
                    id,
                    None,
                    &segments,
                    path.span,
                    PathSource::Visibility,
                    CrateLint::SimplePath(id),
                ).base_def();
4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529
                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
                    }
                }
4530 4531 4532 4533
            }
        }
    }

4534
    fn is_accessible(&self, vis: ty::Visibility) -> bool {
4535
        vis.is_accessible_from(self.current_module.normal_ancestor_id, self)
4536 4537
    }

4538
    fn is_accessible_from(&self, vis: ty::Visibility, module: Module<'a>) -> bool {
4539
        vis.is_accessible_from(module.normal_ancestor_id, self)
4540 4541
    }

4542
    fn report_ambiguity_error(&self, ident: Ident, b1: &NameBinding, b2: &NameBinding) {
4543
        let participle = |is_import: bool| if is_import { "imported" } else { "defined" };
4544
        let msg1 =
4545
            format!("`{}` could refer to the name {} here", ident, participle(b1.is_import()));
4546
        let msg2 =
4547
            format!("`{}` could also refer to the name {} here", ident, participle(b2.is_import()));
4548 4549
        let note = if b1.expansion != Mark::root() {
            Some(if let Def::Macro(..) = b1.def() {
4550
                format!("macro-expanded {} do not shadow",
4551
                        if b1.is_import() { "macro imports" } else { "macros" })
4552 4553
            } else {
                format!("macro-expanded {} do not shadow when used in a macro invocation path",
4554
                        if b1.is_import() { "imports" } else { "items" })
4555
            })
4556
        } else if b1.is_glob_import() {
4557
            Some(format!("consider adding an explicit import of `{}` to disambiguate", ident))
4558 4559 4560 4561
        } else {
            None
        };

4562 4563
        let mut err = struct_span_err!(self.session, ident.span, E0659, "`{}` is ambiguous", ident);
        err.span_label(ident.span, "ambiguous name");
4564 4565 4566
        err.span_note(b1.span, &msg1);
        match b2.def() {
            Def::Macro(..) if b2.span.is_dummy() =>
4567
                err.note(&format!("`{}` is also a builtin macro", ident)),
4568
            _ => err.span_note(b2.span, &msg2),
4569 4570 4571 4572 4573 4574 4575
        };
        if let Some(note) = note {
            err.note(&note);
        }
        err.emit();
    }

4576 4577
    fn report_errors(&mut self, krate: &Crate) {
        self.report_with_use_injections(krate);
4578
        self.report_proc_macro_import(krate);
4579
        let mut reported_spans = FxHashSet();
4580

4581 4582 4583
        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";
4584 4585 4586 4587 4588 4589
            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),
            );
4590 4591
        }

4592 4593 4594
        for &AmbiguityError { ident, b1, b2 } in &self.ambiguity_errors {
            if reported_spans.insert(ident.span) {
                self.report_ambiguity_error(ident, b1, b2);
4595
            }
4596 4597
        }

4598 4599
        for &PrivacyError(span, name, binding) in &self.privacy_errors {
            if !reported_spans.insert(span) { continue }
G
Guillaume Gomez 已提交
4600
            span_err!(self.session, span, E0603, "{} `{}` is private", binding.descr(), name);
4601 4602
        }
    }
4603

4604 4605
    fn report_with_use_injections(&mut self, krate: &Crate) {
        for UseError { mut err, candidates, node_id, better } in self.use_injections.drain(..) {
4606
            let (span, found_use) = UsePlacementFinder::check(krate, node_id);
4607
            if !candidates.is_empty() {
4608
                show_candidates(&mut err, span, &candidates, better, found_use);
4609 4610 4611 4612 4613
            }
            err.emit();
        }
    }

C
Cldfire 已提交
4614
    fn report_conflict<'b>(&mut self,
4615
                       parent: Module,
4616
                       ident: Ident,
4617
                       ns: Namespace,
C
Cldfire 已提交
4618 4619
                       new_binding: &NameBinding<'b>,
                       old_binding: &NameBinding<'b>) {
4620
        // Error on the second of two conflicting names
4621
        if old_binding.span.lo() > new_binding.span.lo() {
4622
            return self.report_conflict(parent, ident, ns, old_binding, new_binding);
4623 4624
        }

J
Jeffrey Seyfried 已提交
4625 4626 4627 4628
        let container = match parent.kind {
            ModuleKind::Def(Def::Mod(_), _) => "module",
            ModuleKind::Def(Def::Trait(_), _) => "trait",
            ModuleKind::Block(..) => "block",
4629 4630 4631
            _ => "enum",
        };

4632 4633 4634
        let old_noun = match old_binding.is_import() {
            true => "import",
            false => "definition",
4635 4636
        };

4637 4638 4639 4640 4641
        let new_participle = match new_binding.is_import() {
            true => "imported",
            false => "defined",
        };

D
Donato Sciarra 已提交
4642
        let (name, span) = (ident.name, self.session.source_map().def_span(new_binding.span));
4643 4644 4645 4646 4647 4648 4649

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

4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661
        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()) {
4662
            (true, true) => struct_span_err!(self.session, span, E0259, "{}", msg),
4663
            (true, _) | (_, true) => match new_binding.is_import() && old_binding.is_import() {
4664 4665
                true => struct_span_err!(self.session, span, E0254, "{}", msg),
                false => struct_span_err!(self.session, span, E0260, "{}", msg),
M
Mohit Agarwal 已提交
4666
            },
4667
            _ => match (old_binding.is_import(), new_binding.is_import()) {
4668 4669 4670
                (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),
4671 4672 4673
            },
        };

4674 4675
        err.note(&format!("`{}` must be defined only once in the {} namespace of this {}",
                          name,
4676
                          ns.descr(),
4677 4678 4679
                          container));

        err.span_label(span, format!("`{}` re{} here", name, new_participle));
V
Vadim Petrochenkov 已提交
4680
        if !old_binding.span.is_dummy() {
D
Donato Sciarra 已提交
4681
            err.span_label(self.session.source_map().def_span(old_binding.span),
4682
                           format!("previous {} of the {} `{}` here", old_noun, old_kind, name));
4683
        }
4684

C
Cldfire 已提交
4685 4686
        // See https://github.com/rust-lang/rust/issues/32354
        if old_binding.is_import() || new_binding.is_import() {
V
Vadim Petrochenkov 已提交
4687
            let binding = if new_binding.is_import() && !new_binding.span.is_dummy() {
C
Cldfire 已提交
4688 4689 4690 4691 4692
                new_binding
            } else {
                old_binding
            };

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

4696 4697
            if let (Ok(snippet), false) = (cm.span_to_snippet(binding.span),
                                           binding.is_renamed_extern_crate()) {
4698 4699 4700 4701 4702 4703
                let suggested_name = if name.as_str().chars().next().unwrap().is_uppercase() {
                    format!("Other{}", name)
                } else {
                    format!("other_{}", name)
                };

4704 4705 4706 4707 4708 4709 4710 4711 4712 4713
                err.span_suggestion_with_applicability(
                    binding.span,
                    rename_msg,
                    if snippet.ends_with(';') {
                        format!("{} as {};", &snippet[..snippet.len() - 1], suggested_name)
                    } else {
                        format!("{} as {}", snippet, suggested_name)
                    },
                    Applicability::MachineApplicable,
                );
C
Cldfire 已提交
4714 4715 4716 4717 4718
            } else {
                err.span_label(binding.span, rename_msg);
            }
        }

4719
        err.emit();
4720
        self.name_already_seen.insert(name, span);
4721 4722
    }
}
4723

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

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

V
Vadim Petrochenkov 已提交
4732
fn names_to_string(idents: &[Ident]) -> String {
4733
    let mut result = String::new();
4734
    for (i, ident) in idents.iter()
V
Vadim Petrochenkov 已提交
4735
                            .filter(|ident| ident.name != keywords::CrateRoot.name())
4736
                            .enumerate() {
4737 4738 4739
        if i > 0 {
            result.push_str("::");
        }
V
Vadim Petrochenkov 已提交
4740
        result.push_str(&ident.as_str());
C
corentih 已提交
4741
    }
4742 4743 4744
    result
}

4745
fn path_names_to_string(path: &Path) -> String {
4746
    names_to_string(&path.segments.iter()
V
Vadim Petrochenkov 已提交
4747
                        .map(|seg| seg.ident)
4748
                        .collect::<Vec<_>>())
4749 4750
}

4751
/// Get the path for an enum and the variant from an `ImportSuggestion` for an enum variant.
E
Esteban Küber 已提交
4752
fn import_candidate_to_paths(suggestion: &ImportSuggestion) -> (Span, String, String) {
4753 4754 4755 4756 4757 4758 4759 4760 4761 4762
    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 已提交
4763
    (suggestion.path.span, variant_path_string, enum_path_string)
4764 4765 4766
}


4767 4768 4769
/// 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
4770
fn show_candidates(err: &mut DiagnosticBuilder,
4771 4772
                   // This is `None` if all placement locations are inside expansions
                   span: Option<Span>,
4773
                   candidates: &[ImportSuggestion],
4774 4775
                   better: bool,
                   found_use: bool) {
4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786

    // 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",
4787
    };
4788 4789
    let msg = format!("possible {}candidate{} into scope", better, msg_diff);

4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800
    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);
        }
4801

4802 4803 4804 4805 4806 4807 4808 4809 4810
        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);
        }
    }
4811 4812
}

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

4817
    fn collect_mod(names: &mut Vec<Ident>, module: Module) {
J
Jeffrey Seyfried 已提交
4818 4819
        if let ModuleKind::Def(_, name) = module.kind {
            if let Some(parent) = module.parent {
4820
                names.push(Ident::with_empty_ctxt(name));
J
Jeffrey Seyfried 已提交
4821
                collect_mod(names, parent);
4822
            }
J
Jeffrey Seyfried 已提交
4823 4824
        } else {
            // danger, shouldn't be ident?
4825
            names.push(Ident::from_str("<opaque>"));
J
Jeffrey Seyfried 已提交
4826
            collect_mod(names, module.parent.unwrap());
4827 4828 4829 4830
        }
    }
    collect_mod(&mut names, module);

4831
    if names.is_empty() {
4832
        return None;
4833
    }
4834
    Some(names_to_string(&names.into_iter()
4835
                        .rev()
4836
                        .collect::<Vec<_>>()))
4837 4838
}

4839
fn err_path_resolution() -> PathResolution {
4840
    PathResolution::new(Def::Err)
4841 4842
}

N
Niko Matsakis 已提交
4843
#[derive(PartialEq,Copy, Clone)]
4844 4845
pub enum MakeGlobMap {
    Yes,
C
corentih 已提交
4846
    No,
4847 4848
}

4849
#[derive(Copy, Clone, Debug)]
4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862
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 },
4863 4864 4865 4866 4867

    /// 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 },
4868 4869
}

4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880
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),
        }
    }
}

4881
__build_diagnostic_array! { librustc_resolve, DIAGNOSTICS }