2013-08-06 23:50:23 -05:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 18:48:01 -06:00
|
|
|
// 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.
|
|
|
|
|
2013-05-17 17:28:44 -05:00
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
use driver::session::Session;
|
2013-08-21 19:26:33 -05:00
|
|
|
use metadata::csearch::get_trait_method_def_ids;
|
2013-04-30 10:49:48 -05:00
|
|
|
use metadata::csearch::get_method_name_and_explicit_self;
|
2013-03-26 15:38:07 -05:00
|
|
|
use metadata::csearch::get_static_methods_if_impl;
|
2013-08-07 13:52:33 -05:00
|
|
|
use metadata::csearch::{get_type_name_if_impl, get_struct_fields};
|
2013-08-21 19:26:33 -05:00
|
|
|
use metadata::csearch;
|
2013-02-17 20:45:00 -06:00
|
|
|
use metadata::cstore::find_extern_mod_stmt_cnum;
|
2013-08-31 11:13:04 -05:00
|
|
|
use metadata::decoder::{DefLike, DlDef, DlField, DlImpl};
|
2012-09-04 13:54:36 -05:00
|
|
|
use middle::lang_items::LanguageItems;
|
2013-07-08 10:34:28 -05:00
|
|
|
use middle::lint::{unnecessary_qualification, unused_imports};
|
2013-03-26 15:38:07 -05:00
|
|
|
use middle::pat_util::pat_bindings;
|
2012-12-23 16:41:37 -06:00
|
|
|
|
2013-04-30 00:15:17 -05:00
|
|
|
use syntax::ast::*;
|
2013-05-21 20:24:42 -05:00
|
|
|
use syntax::ast;
|
2013-09-05 16:15:00 -05:00
|
|
|
use syntax::ast_util::{def_id_of_def, local_def, mtwt_resolve};
|
2012-09-04 13:54:36 -05:00
|
|
|
use syntax::ast_util::{path_to_ident, walk_pat, trait_method_to_ty_method};
|
2013-01-30 19:20:02 -06:00
|
|
|
use syntax::ast_util::{Privacy, Public, Private};
|
|
|
|
use syntax::ast_util::{variant_visibility_to_privacy, visibility_to_privacy};
|
2013-07-19 06:51:37 -05:00
|
|
|
use syntax::attr;
|
2013-05-14 19:27:27 -05:00
|
|
|
use syntax::parse::token;
|
2013-06-05 21:49:41 -05:00
|
|
|
use syntax::parse::token::{ident_interner, interner_get};
|
2012-12-23 16:41:37 -06:00
|
|
|
use syntax::parse::token::special_idents;
|
2013-03-26 15:38:07 -05:00
|
|
|
use syntax::print::pprust::path_to_str;
|
2013-08-31 11:13:04 -05:00
|
|
|
use syntax::codemap::{Span, dummy_sp, BytePos};
|
2013-02-14 23:50:03 -06:00
|
|
|
use syntax::opt_vec::OptVec;
|
2013-08-13 11:52:41 -05:00
|
|
|
use syntax::visit;
|
|
|
|
use syntax::visit::Visitor;
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-06-28 17:32:26 -05:00
|
|
|
use std::uint;
|
|
|
|
use std::hashmap::{HashMap, HashSet};
|
|
|
|
use std::util;
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// Definition mapping
|
2013-09-01 20:45:37 -05:00
|
|
|
pub type DefMap = @mut HashMap<NodeId,Def>;
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub struct binding_info {
|
2013-08-31 11:13:04 -05:00
|
|
|
span: Span,
|
2013-09-01 20:45:37 -05:00
|
|
|
binding_mode: BindingMode,
|
2012-08-06 09:20:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Map from the name in a pattern to its binding mode.
|
2013-06-26 17:56:13 -05:00
|
|
|
pub type BindingMap = HashMap<Name,binding_info>;
|
2012-08-06 09:20:23 -05:00
|
|
|
|
2012-07-11 17:00:40 -05:00
|
|
|
// Trait method resolution
|
2013-09-01 20:45:37 -05:00
|
|
|
pub type TraitMap = HashMap<NodeId,@mut ~[DefId]>;
|
2012-07-11 17:00:40 -05:00
|
|
|
|
2013-08-08 13:38:10 -05:00
|
|
|
// A summary of the generics on a trait.
|
|
|
|
struct TraitGenerics {
|
|
|
|
has_lifetime: bool,
|
|
|
|
type_parameter_count: uint,
|
|
|
|
}
|
|
|
|
|
2012-08-17 14:41:34 -05:00
|
|
|
// This is the replacement export map. It maps a module to all of the exports
|
|
|
|
// within.
|
2013-07-27 03:25:59 -05:00
|
|
|
pub type ExportMap2 = @mut HashMap<NodeId, ~[Export2]>;
|
2012-08-17 14:41:34 -05:00
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub struct Export2 {
|
2013-06-12 12:02:55 -05:00
|
|
|
name: @str, // The name of the target.
|
2013-09-01 20:45:37 -05:00
|
|
|
def_id: DefId, // The definition of the target.
|
2012-09-07 16:50:47 -05:00
|
|
|
reexport: bool, // Whether this is a reexport.
|
2012-08-17 14:41:34 -05:00
|
|
|
}
|
|
|
|
|
2013-03-20 10:40:02 -05:00
|
|
|
#[deriving(Eq)]
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum PatternBindingMode {
|
2012-05-22 12:54:12 -05:00
|
|
|
RefutableMode,
|
2012-11-06 20:41:06 -06:00
|
|
|
LocalIrrefutableMode,
|
2013-04-24 03:29:46 -05:00
|
|
|
ArgumentIrrefutableMode,
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-03-26 21:53:33 -05:00
|
|
|
#[deriving(Eq)]
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum Namespace {
|
2012-05-22 12:54:12 -05:00
|
|
|
TypeNS,
|
2012-08-17 19:09:53 -05:00
|
|
|
ValueNS
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-06-23 11:48:43 -05:00
|
|
|
#[deriving(Eq)]
|
|
|
|
pub enum NamespaceError {
|
|
|
|
NoError,
|
|
|
|
ModuleError,
|
|
|
|
TypeError,
|
|
|
|
ValueError
|
|
|
|
}
|
|
|
|
|
2012-11-29 16:43:33 -06:00
|
|
|
/// A NamespaceResult represents the result of resolving an import in
|
|
|
|
/// a particular namespace. The result is either definitely-resolved,
|
|
|
|
/// definitely- unresolved, or unknown.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum NamespaceResult {
|
2012-11-29 14:08:40 -06:00
|
|
|
/// Means that resolve hasn't gathered enough information yet to determine
|
|
|
|
/// whether the name is bound in this namespace. (That is, it hasn't
|
|
|
|
/// resolved all `use` directives yet.)
|
2012-05-22 12:54:12 -05:00
|
|
|
UnknownResult,
|
2012-11-29 16:43:33 -06:00
|
|
|
/// Means that resolve has determined that the name is definitely
|
|
|
|
/// not bound in the namespace.
|
2012-05-22 12:54:12 -05:00
|
|
|
UnboundResult,
|
2012-11-29 14:08:40 -06:00
|
|
|
/// Means that resolve has determined that the name is bound in the Module
|
|
|
|
/// argument, and specified by the NameBindings argument.
|
2013-02-21 13:08:50 -06:00
|
|
|
BoundResult(@mut Module, @mut NameBindings)
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl NamespaceResult {
|
|
|
|
pub fn is_unknown(&self) -> bool {
|
2013-02-22 00:41:37 -06:00
|
|
|
match *self {
|
2012-08-27 18:26:35 -05:00
|
|
|
UnknownResult => true,
|
|
|
|
_ => false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum NameDefinition {
|
2012-05-22 12:54:12 -05:00
|
|
|
NoNameDefinition, //< The name was unbound.
|
2013-09-01 20:45:37 -05:00
|
|
|
ChildNameDefinition(Def), //< The name identifies an immediate child.
|
|
|
|
ImportNameDefinition(Def) //< The name identifies an import.
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-03-20 10:40:02 -05:00
|
|
|
#[deriving(Eq)]
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum Mutability {
|
2012-05-22 12:54:12 -05:00
|
|
|
Mutable,
|
|
|
|
Immutable
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum SelfBinding {
|
2012-05-22 12:54:12 -05:00
|
|
|
NoSelfBinding,
|
2013-08-27 15:36:42 -05:00
|
|
|
HasSelfBinding(NodeId)
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
impl Visitor<()> for Resolver {
|
2013-08-13 11:52:41 -05:00
|
|
|
fn visit_item(&mut self, item:@item, _:()) {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_item(item);
|
2013-08-13 11:52:41 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
fn visit_arm(&mut self, arm:&Arm, _:()) {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_arm(arm);
|
2013-08-13 11:52:41 -05:00
|
|
|
}
|
|
|
|
fn visit_block(&mut self, block:&Block, _:()) {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_block(block);
|
2013-08-13 11:52:41 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
fn visit_expr(&mut self, expr:@Expr, _:()) {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_expr(expr);
|
2013-08-13 11:52:41 -05:00
|
|
|
}
|
|
|
|
fn visit_local(&mut self, local:@Local, _:()) {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_local(local);
|
2013-08-13 11:52:41 -05:00
|
|
|
}
|
|
|
|
fn visit_ty(&mut self, ty:&Ty, _:()) {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_type(ty);
|
2013-08-13 11:52:41 -05:00
|
|
|
}
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Contains data for specific types of import directives.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum ImportDirectiveSubclass {
|
2013-09-01 19:50:59 -05:00
|
|
|
SingleImport(Ident /* target */, Ident /* source */),
|
2012-05-22 12:54:12 -05:00
|
|
|
GlobImport
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// The context that we thread through while building the reduced graph.
|
2013-07-02 14:47:32 -05:00
|
|
|
#[deriving(Clone)]
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum ReducedGraphParent {
|
2013-02-21 13:08:50 -06:00
|
|
|
ModuleReducedGraphParent(@mut Module)
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum ResolveResult<T> {
|
2012-05-22 12:54:12 -05:00
|
|
|
Failed, // Failed to resolve the name.
|
|
|
|
Indeterminate, // Couldn't determine due to unresolved globs.
|
|
|
|
Success(T) // Successfully resolved the import.
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl<T> ResolveResult<T> {
|
|
|
|
pub fn failed(&self) -> bool {
|
2013-02-22 00:41:37 -06:00
|
|
|
match *self { Failed => true, _ => false }
|
2012-09-07 20:53:14 -05:00
|
|
|
}
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn indeterminate(&self) -> bool {
|
2013-02-22 00:41:37 -06:00
|
|
|
match *self { Indeterminate => true, _ => false }
|
2012-09-07 20:53:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-14 14:25:48 -05:00
|
|
|
pub enum TypeParameters<'self> {
|
2013-03-26 21:53:33 -05:00
|
|
|
NoTypeParameters, //< No type parameters.
|
2013-03-14 13:22:51 -05:00
|
|
|
HasTypeParameters(&'self Generics, //< Type parameters.
|
2013-07-27 03:25:59 -05:00
|
|
|
NodeId, //< ID of the enclosing item
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// The index to start numbering the type parameters at.
|
|
|
|
// This is zero if this is the outermost set of type
|
|
|
|
// parameters, or equal to the number of outer type
|
|
|
|
// parameters. For example, if we have:
|
|
|
|
//
|
|
|
|
// impl I<T> {
|
|
|
|
// fn method<U>() { ... }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// The index at the method site will be 1, because the
|
|
|
|
// outer T had index 0.
|
2012-07-06 21:06:58 -05:00
|
|
|
uint,
|
|
|
|
|
|
|
|
// The kind of the rib used for type parameters.
|
|
|
|
RibKind)
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// The rib kind controls the translation of argument or local definitions
|
|
|
|
// (`def_arg` or `def_local`) to upvars (`def_upvar`).
|
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum RibKind {
|
2012-05-22 12:54:12 -05:00
|
|
|
// No translation needs to be applied.
|
|
|
|
NormalRibKind,
|
2012-07-06 21:06:58 -05:00
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
// We passed through a function scope at the given node ID. Translate
|
|
|
|
// upvars as appropriate.
|
2013-07-27 03:25:59 -05:00
|
|
|
FunctionRibKind(NodeId /* func id */, NodeId /* body id */),
|
2012-07-06 21:06:58 -05:00
|
|
|
|
2012-12-10 15:47:54 -06:00
|
|
|
// We passed through an impl or trait and are now in one of its
|
2013-06-06 02:38:41 -05:00
|
|
|
// methods. Allow references to ty params that impl or trait
|
2012-07-26 16:04:03 -05:00
|
|
|
// binds. Disallow any other upvars (including other ty params that are
|
|
|
|
// upvars).
|
|
|
|
// parent; method itself
|
2013-07-27 03:25:59 -05:00
|
|
|
MethodRibKind(NodeId, MethodSort),
|
2012-07-26 16:04:03 -05:00
|
|
|
|
2012-07-06 21:06:58 -05:00
|
|
|
// We passed through a function *item* scope. Disallow upvars.
|
2012-10-15 14:27:09 -05:00
|
|
|
OpaqueFunctionRibKind,
|
|
|
|
|
|
|
|
// We're in a constant item. Can't refer to dynamic stuff.
|
|
|
|
ConstantItemRibKind
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-07-26 16:04:03 -05:00
|
|
|
// Methods can be required or provided. Required methods only occur in traits.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum MethodSort {
|
2012-07-26 16:04:03 -05:00
|
|
|
Required,
|
2013-07-27 03:25:59 -05:00
|
|
|
Provided(NodeId)
|
2012-07-26 16:04:03 -05:00
|
|
|
}
|
|
|
|
|
2012-07-03 17:55:26 -05:00
|
|
|
// The X-ray flag indicates that a context has the X-ray privilege, which
|
|
|
|
// allows it to reference private names. Currently, this is used for the test
|
|
|
|
// runner.
|
|
|
|
//
|
2013-02-14 20:37:25 -06:00
|
|
|
// FIXME #4947: The X-ray flag is kind of questionable in the first
|
|
|
|
// place. It might be better to introduce an expr_xray_path instead.
|
2012-07-03 17:55:26 -05:00
|
|
|
|
2013-03-20 10:40:02 -05:00
|
|
|
#[deriving(Eq)]
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum XrayFlag {
|
2012-07-03 17:55:26 -05:00
|
|
|
NoXray, //< Private items cannot be accessed.
|
|
|
|
Xray //< Private items can be accessed.
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum UseLexicalScopeFlag {
|
2012-12-13 15:05:22 -06:00
|
|
|
DontUseLexicalScope,
|
|
|
|
UseLexicalScope
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum SearchThroughModulesFlag {
|
2012-12-23 16:41:37 -06:00
|
|
|
DontSearchThroughModules,
|
|
|
|
SearchThroughModules
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum ModulePrefixResult {
|
2012-12-23 16:41:37 -06:00
|
|
|
NoPrefixFound,
|
2013-02-21 13:08:50 -06:00
|
|
|
PrefixFound(@mut Module, uint)
|
2012-12-13 15:05:22 -06:00
|
|
|
}
|
|
|
|
|
2013-03-20 10:40:02 -05:00
|
|
|
#[deriving(Eq)]
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum AllowCapturingSelfFlag {
|
2012-07-06 21:06:58 -05:00
|
|
|
AllowCapturingSelf, //< The "self" definition can be captured.
|
|
|
|
DontAllowCapturingSelf, //< The "self" definition cannot be captured.
|
|
|
|
}
|
|
|
|
|
2013-03-20 10:40:02 -05:00
|
|
|
#[deriving(Eq)]
|
2013-03-01 12:44:43 -06:00
|
|
|
enum NameSearchType {
|
2013-05-13 18:13:20 -05:00
|
|
|
/// We're doing a name search in order to resolve a `use` directive.
|
|
|
|
ImportSearch,
|
|
|
|
|
|
|
|
/// We're doing a name search in order to resolve a path type, a path
|
|
|
|
/// expression, or a path pattern. We can select public or private
|
|
|
|
/// names.
|
|
|
|
///
|
|
|
|
/// XXX: This should be ripped out of resolve and handled later, in
|
|
|
|
/// the privacy checking phase.
|
|
|
|
PathPublicOrPrivateSearch,
|
|
|
|
|
|
|
|
/// We're doing a name search in order to resolve a path type, a path
|
|
|
|
/// expression, or a path pattern. Allow only public names to be selected.
|
|
|
|
PathPublicOnlySearch,
|
2013-03-01 12:44:43 -06:00
|
|
|
}
|
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum BareIdentifierPatternResolution {
|
2013-09-01 20:45:37 -05:00
|
|
|
FoundStructOrEnumVariant(Def),
|
|
|
|
FoundConst(Def),
|
2012-10-30 17:53:06 -05:00
|
|
|
BareIdentifierPatternUnresolved
|
2012-07-06 21:06:58 -05:00
|
|
|
}
|
|
|
|
|
2012-10-15 20:04:15 -05:00
|
|
|
// Specifies how duplicates should be handled when adding a child item if
|
|
|
|
// another item exists with the same name in some namespace.
|
2013-03-20 10:40:02 -05:00
|
|
|
#[deriving(Eq)]
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum DuplicateCheckingMode {
|
2012-10-15 20:04:15 -05:00
|
|
|
ForbidDuplicateModules,
|
|
|
|
ForbidDuplicateTypes,
|
|
|
|
ForbidDuplicateValues,
|
|
|
|
ForbidDuplicateTypesAndValues,
|
|
|
|
OverwriteDuplicates
|
|
|
|
}
|
|
|
|
|
2012-08-14 21:20:56 -05:00
|
|
|
/// One local scope.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub struct Rib {
|
2013-06-05 21:49:41 -05:00
|
|
|
bindings: @mut HashMap<Name, DefLike>,
|
2013-08-31 11:13:04 -05:00
|
|
|
self_binding: @mut Option<DefLike>,
|
2012-09-06 21:40:15 -05:00
|
|
|
kind: RibKind,
|
2012-09-05 17:58:43 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-08-31 11:13:04 -05:00
|
|
|
impl Rib {
|
|
|
|
pub fn new(kind: RibKind) -> Rib {
|
|
|
|
Rib {
|
|
|
|
bindings: @mut HashMap::new(),
|
|
|
|
self_binding: @mut None,
|
|
|
|
kind: kind
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// One import directive.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub struct ImportDirective {
|
2012-09-25 17:22:28 -05:00
|
|
|
privacy: Privacy,
|
2013-09-01 19:50:59 -05:00
|
|
|
module_path: ~[Ident],
|
2012-09-06 21:40:15 -05:00
|
|
|
subclass: @ImportDirectiveSubclass,
|
2013-08-31 11:13:04 -05:00
|
|
|
span: Span,
|
2013-07-27 03:25:59 -05:00
|
|
|
id: NodeId,
|
2012-09-05 17:58:43 -05:00
|
|
|
}
|
2012-07-06 21:06:58 -05:00
|
|
|
|
2013-08-31 11:13:04 -05:00
|
|
|
impl ImportDirective {
|
|
|
|
pub fn new(privacy: Privacy,
|
2013-09-01 19:50:59 -05:00
|
|
|
module_path: ~[Ident],
|
2013-08-31 11:13:04 -05:00
|
|
|
subclass: @ImportDirectiveSubclass,
|
|
|
|
span: Span,
|
|
|
|
id: NodeId)
|
|
|
|
-> ImportDirective {
|
|
|
|
ImportDirective {
|
|
|
|
privacy: privacy,
|
|
|
|
module_path: module_path,
|
|
|
|
subclass: subclass,
|
|
|
|
span: span,
|
|
|
|
id: id
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// The item that an import resolves to.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub struct Target {
|
2013-02-21 13:08:50 -06:00
|
|
|
target_module: @mut Module,
|
2013-02-04 16:02:01 -06:00
|
|
|
bindings: @mut NameBindings,
|
2012-09-05 17:58:43 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-08-31 11:13:04 -05:00
|
|
|
impl Target {
|
|
|
|
pub fn new(target_module: @mut Module,
|
|
|
|
bindings: @mut NameBindings)
|
|
|
|
-> Target {
|
|
|
|
Target {
|
|
|
|
target_module: target_module,
|
|
|
|
bindings: bindings
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-29 14:08:40 -06:00
|
|
|
/// An ImportResolution represents a particular `use` directive.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub struct ImportResolution {
|
2012-11-29 14:08:40 -06:00
|
|
|
/// The privacy of this `use` directive (whether it's `use` or
|
|
|
|
/// `pub use`.
|
2012-09-25 17:22:28 -05:00
|
|
|
privacy: Privacy,
|
2012-07-06 21:06:58 -05:00
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
// The number of outstanding references to this name. When this reaches
|
|
|
|
// zero, outside modules can count on the targets being correct. Before
|
|
|
|
// then, all bets are off; future imports could override this name.
|
2013-02-04 16:02:01 -06:00
|
|
|
outstanding_references: uint,
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-11-29 14:08:40 -06:00
|
|
|
/// The value that this `use` directive names, if there is one.
|
2013-02-04 16:02:01 -06:00
|
|
|
value_target: Option<Target>,
|
2013-06-09 23:39:15 -05:00
|
|
|
/// The source node of the `use` directive leading to the value target
|
|
|
|
/// being non-none
|
2013-07-27 03:25:59 -05:00
|
|
|
value_id: NodeId,
|
2013-06-09 23:39:15 -05:00
|
|
|
|
2012-11-29 14:08:40 -06:00
|
|
|
/// The type that this `use` directive names, if there is one.
|
2013-02-04 16:02:01 -06:00
|
|
|
type_target: Option<Target>,
|
2013-06-09 23:39:15 -05:00
|
|
|
/// The source node of the `use` directive leading to the type target
|
|
|
|
/// being non-none
|
2013-07-27 03:25:59 -05:00
|
|
|
type_id: NodeId,
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-08-31 11:13:04 -05:00
|
|
|
impl ImportResolution {
|
|
|
|
pub fn new(privacy: Privacy,
|
|
|
|
id: NodeId) -> ImportResolution {
|
|
|
|
ImportResolution {
|
|
|
|
privacy: privacy,
|
|
|
|
type_id: id,
|
|
|
|
value_id: id,
|
|
|
|
outstanding_references: 0,
|
|
|
|
value_target: None,
|
|
|
|
type_target: None,
|
|
|
|
}
|
2012-09-05 17:58:43 -05:00
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn target_for_namespace(&self, namespace: Namespace)
|
|
|
|
-> Option<Target> {
|
2012-09-07 21:04:40 -05:00
|
|
|
match namespace {
|
2013-06-27 19:41:35 -05:00
|
|
|
TypeNS => return self.type_target,
|
|
|
|
ValueNS => return self.value_target,
|
2012-09-07 21:04:40 -05:00
|
|
|
}
|
|
|
|
}
|
2013-06-09 23:39:15 -05:00
|
|
|
|
2013-07-27 03:25:59 -05:00
|
|
|
fn id(&self, namespace: Namespace) -> NodeId {
|
2013-06-09 23:39:15 -05:00
|
|
|
match namespace {
|
|
|
|
TypeNS => self.type_id,
|
|
|
|
ValueNS => self.value_id,
|
|
|
|
}
|
|
|
|
}
|
2012-09-07 21:04:40 -05:00
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// The link from a module up to its nearest parent node.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum ParentLink {
|
2012-05-22 12:54:12 -05:00
|
|
|
NoParentLink,
|
2013-09-01 19:50:59 -05:00
|
|
|
ModuleParentLink(@mut Module, Ident),
|
2013-07-27 03:25:59 -05:00
|
|
|
BlockParentLink(@mut Module, NodeId)
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
/// The type of module this is.
|
2013-06-09 06:35:24 -05:00
|
|
|
#[deriving(Eq)]
|
2013-01-30 15:44:24 -06:00
|
|
|
pub enum ModuleKind {
|
2012-12-23 16:41:37 -06:00
|
|
|
NormalModuleKind,
|
|
|
|
ExternModuleKind,
|
|
|
|
TraitModuleKind,
|
2013-05-13 18:13:20 -05:00
|
|
|
ImplModuleKind,
|
2012-12-23 16:41:37 -06:00
|
|
|
AnonymousModuleKind,
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// One node in the tree of modules.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub struct Module {
|
2012-09-06 21:40:15 -05:00
|
|
|
parent_link: ParentLink,
|
2013-09-01 20:45:37 -05:00
|
|
|
def_id: Option<DefId>,
|
2012-12-23 16:41:37 -06:00
|
|
|
kind: ModuleKind,
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-06-26 17:56:13 -05:00
|
|
|
children: @mut HashMap<Name, @mut NameBindings>,
|
2013-03-16 13:11:31 -05:00
|
|
|
imports: @mut ~[@ImportDirective],
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-03-26 21:53:33 -05:00
|
|
|
// The external module children of this node that were declared with
|
|
|
|
// `extern mod`.
|
2013-06-26 17:56:13 -05:00
|
|
|
external_module_children: @mut HashMap<Name, @mut Module>,
|
2013-03-26 21:53:33 -05:00
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
// The anonymous children of this node. Anonymous children 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`.
|
2013-07-27 03:25:59 -05:00
|
|
|
anonymous_children: @mut HashMap<NodeId,@mut Module>,
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// The status of resolving each import in this module.
|
2013-06-26 17:56:13 -05:00
|
|
|
import_resolutions: @mut HashMap<Name, @mut ImportResolution>,
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// The number of unresolved globs that this module exports.
|
2013-02-21 13:08:50 -06:00
|
|
|
glob_count: uint,
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// The index of the import we're resolving.
|
2013-02-21 13:08:50 -06:00
|
|
|
resolved_import_count: uint,
|
2013-08-21 20:39:30 -05:00
|
|
|
|
|
|
|
// Whether this module is populated. If not populated, any attempt to
|
|
|
|
// access the children must be preceded with a
|
|
|
|
// `populate_module_if_necessary` call.
|
|
|
|
populated: bool,
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-08-31 11:13:04 -05:00
|
|
|
impl Module {
|
|
|
|
pub fn new(parent_link: ParentLink,
|
2013-09-01 20:45:37 -05:00
|
|
|
def_id: Option<DefId>,
|
2013-08-31 11:13:04 -05:00
|
|
|
kind: ModuleKind,
|
|
|
|
external: bool)
|
|
|
|
-> Module {
|
|
|
|
Module {
|
|
|
|
parent_link: parent_link,
|
|
|
|
def_id: def_id,
|
|
|
|
kind: kind,
|
|
|
|
children: @mut HashMap::new(),
|
|
|
|
imports: @mut ~[],
|
|
|
|
external_module_children: @mut HashMap::new(),
|
|
|
|
anonymous_children: @mut HashMap::new(),
|
|
|
|
import_resolutions: @mut HashMap::new(),
|
|
|
|
glob_count: 0,
|
|
|
|
resolved_import_count: 0,
|
|
|
|
populated: !external,
|
|
|
|
}
|
2012-09-05 17:58:43 -05:00
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn all_imports_resolved(&self) -> bool {
|
2013-03-16 13:11:31 -05:00
|
|
|
let imports = &mut *self.imports;
|
|
|
|
return imports.len() == self.resolved_import_count;
|
2012-09-07 21:04:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
// Records a possibly-private type definition.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub struct TypeNsDef {
|
2013-02-04 16:02:01 -06:00
|
|
|
privacy: Privacy,
|
2013-02-21 13:08:50 -06:00
|
|
|
module_def: Option<@mut Module>,
|
2013-09-01 20:45:37 -05:00
|
|
|
type_def: Option<Def>,
|
2013-08-31 11:13:04 -05:00
|
|
|
type_span: Option<Span>
|
2012-10-15 16:56:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Records a possibly-private value definition.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub struct ValueNsDef {
|
2012-09-07 16:50:47 -05:00
|
|
|
privacy: Privacy,
|
2013-09-01 20:45:37 -05:00
|
|
|
def: Def,
|
2013-08-31 11:13:04 -05:00
|
|
|
value_span: Option<Span>,
|
2012-08-17 19:55:34 -05:00
|
|
|
}
|
|
|
|
|
2012-07-06 21:06:58 -05:00
|
|
|
// Records the definitions (at most one for each namespace) that a name is
|
|
|
|
// bound to.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub struct NameBindings {
|
2013-02-04 16:02:01 -06:00
|
|
|
type_def: Option<TypeNsDef>, //< Meaning in type namespace.
|
|
|
|
value_def: Option<ValueNsDef>, //< Meaning in value namespace.
|
2012-09-07 21:04:40 -05:00
|
|
|
}
|
|
|
|
|
2013-07-03 16:16:08 -05:00
|
|
|
/// Ways in which a trait can be referenced
|
|
|
|
enum TraitReferenceType {
|
|
|
|
TraitImplementation, // impl SomeTrait for T { ... }
|
|
|
|
TraitDerivation, // trait T : SomeTrait { ... }
|
|
|
|
TraitBoundingTypeParameter, // fn f<T:SomeTrait>() { ... }
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl NameBindings {
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Creates a new module in this set of name bindings.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn define_module(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
privacy: Privacy,
|
|
|
|
parent_link: ParentLink,
|
2013-09-01 20:45:37 -05:00
|
|
|
def_id: Option<DefId>,
|
2013-05-31 17:17:22 -05:00
|
|
|
kind: ModuleKind,
|
2013-08-21 20:39:30 -05:00
|
|
|
external: bool,
|
2013-08-31 11:13:04 -05:00
|
|
|
sp: Span) {
|
2012-10-15 20:04:15 -05:00
|
|
|
// Merges the module with the existing type def or creates a new one.
|
2013-08-31 11:13:04 -05:00
|
|
|
let module_ = @mut Module::new(parent_link, def_id, kind, external);
|
2012-10-15 20:04:15 -05:00
|
|
|
match self.type_def {
|
|
|
|
None => {
|
|
|
|
self.type_def = Some(TypeNsDef {
|
|
|
|
privacy: privacy,
|
|
|
|
module_def: Some(module_),
|
2013-05-14 23:49:30 -05:00
|
|
|
type_def: None,
|
|
|
|
type_span: Some(sp)
|
2012-10-15 20:04:15 -05:00
|
|
|
});
|
|
|
|
}
|
2013-05-29 18:59:33 -05:00
|
|
|
Some(type_def) => {
|
2012-10-15 20:04:15 -05:00
|
|
|
self.type_def = Some(TypeNsDef {
|
|
|
|
privacy: privacy,
|
|
|
|
module_def: Some(module_),
|
2013-05-14 23:49:30 -05:00
|
|
|
type_span: Some(sp),
|
2013-05-29 18:59:33 -05:00
|
|
|
type_def: type_def.type_def
|
2012-10-15 20:04:15 -05:00
|
|
|
});
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-13 18:13:20 -05:00
|
|
|
/// Sets the kind of the module, creating a new one if necessary.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn set_module_kind(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
privacy: Privacy,
|
|
|
|
parent_link: ParentLink,
|
2013-09-01 20:45:37 -05:00
|
|
|
def_id: Option<DefId>,
|
2013-05-31 17:17:22 -05:00
|
|
|
kind: ModuleKind,
|
2013-08-21 20:39:30 -05:00
|
|
|
external: bool,
|
2013-08-31 11:13:04 -05:00
|
|
|
_sp: Span) {
|
2013-05-13 18:13:20 -05:00
|
|
|
match self.type_def {
|
|
|
|
None => {
|
2013-08-31 11:13:04 -05:00
|
|
|
let module = @mut Module::new(parent_link, def_id, kind, external);
|
2013-05-13 18:13:20 -05:00
|
|
|
self.type_def = Some(TypeNsDef {
|
|
|
|
privacy: privacy,
|
|
|
|
module_def: Some(module),
|
2013-05-16 17:37:52 -05:00
|
|
|
type_def: None,
|
|
|
|
type_span: None,
|
2013-05-13 18:13:20 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
Some(type_def) => {
|
|
|
|
match type_def.module_def {
|
|
|
|
None => {
|
2013-08-31 11:13:04 -05:00
|
|
|
let module = @mut Module::new(parent_link,
|
2013-08-21 20:39:30 -05:00
|
|
|
def_id,
|
|
|
|
kind,
|
|
|
|
external);
|
2013-05-13 18:13:20 -05:00
|
|
|
self.type_def = Some(TypeNsDef {
|
|
|
|
privacy: privacy,
|
|
|
|
module_def: Some(module),
|
2013-05-16 17:37:52 -05:00
|
|
|
type_def: type_def.type_def,
|
|
|
|
type_span: None,
|
2013-05-13 18:13:20 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
Some(module_def) => module_def.kind = kind,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Records a type definition.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn define_type(&mut self, privacy: Privacy, def: Def, sp: Span) {
|
2012-10-15 20:04:15 -05:00
|
|
|
// Merges the type with the existing type def or creates a new one.
|
|
|
|
match self.type_def {
|
|
|
|
None => {
|
|
|
|
self.type_def = Some(TypeNsDef {
|
|
|
|
privacy: privacy,
|
|
|
|
module_def: None,
|
2013-05-14 23:49:30 -05:00
|
|
|
type_def: Some(def),
|
|
|
|
type_span: Some(sp)
|
2012-10-15 20:04:15 -05:00
|
|
|
});
|
|
|
|
}
|
2013-05-29 18:59:33 -05:00
|
|
|
Some(type_def) => {
|
2012-10-15 20:04:15 -05:00
|
|
|
self.type_def = Some(TypeNsDef {
|
|
|
|
privacy: privacy,
|
|
|
|
type_def: Some(def),
|
2013-05-14 23:49:30 -05:00
|
|
|
type_span: Some(sp),
|
2013-05-29 18:59:33 -05:00
|
|
|
module_def: type_def.module_def
|
2012-10-15 20:04:15 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Records a value definition.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn define_value(&mut self, privacy: Privacy, def: Def, sp: Span) {
|
2013-05-14 23:49:30 -05:00
|
|
|
self.value_def = Some(ValueNsDef { privacy: privacy, def: def, value_span: Some(sp) });
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Returns the module node if applicable.
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn get_module_if_available(&self) -> Option<@mut Module> {
|
2012-10-15 16:56:42 -05:00
|
|
|
match self.type_def {
|
2012-12-04 12:50:00 -06:00
|
|
|
Some(ref type_def) => (*type_def).module_def,
|
2012-10-15 20:04:15 -05:00
|
|
|
None => None
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/**
|
|
|
|
* Returns the module node. Fails if this node does not have a module
|
|
|
|
* definition.
|
|
|
|
*/
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn get_module(&mut self) -> @mut Module {
|
2012-10-15 20:04:15 -05:00
|
|
|
match self.get_module_if_available() {
|
|
|
|
None => {
|
2013-09-28 00:38:08 -05:00
|
|
|
fail2!("get_module called on a node with no module \
|
2013-01-31 19:51:01 -06:00
|
|
|
definition!")
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-10-15 20:04:15 -05:00
|
|
|
Some(module_def) => module_def
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn defined_in_namespace(&self, namespace: Namespace) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match namespace {
|
2012-09-07 20:53:14 -05:00
|
|
|
TypeNS => return self.type_def.is_some(),
|
|
|
|
ValueNS => return self.value_def.is_some()
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn defined_in_public_namespace(&self, namespace: Namespace) -> bool {
|
2013-02-25 23:34:45 -06:00
|
|
|
match namespace {
|
|
|
|
TypeNS => match self.type_def {
|
|
|
|
Some(def) => def.privacy != Private,
|
|
|
|
None => false
|
|
|
|
},
|
|
|
|
ValueNS => match self.value_def {
|
|
|
|
Some(def) => def.privacy != Private,
|
|
|
|
None => false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
pub fn def_for_namespace(&self, namespace: Namespace) -> Option<Def> {
|
2012-08-06 14:34:08 -05:00
|
|
|
match namespace {
|
2012-10-15 16:56:42 -05:00
|
|
|
TypeNS => {
|
|
|
|
match self.type_def {
|
|
|
|
None => None,
|
2012-12-04 12:50:00 -06:00
|
|
|
Some(ref type_def) => {
|
|
|
|
match (*type_def).type_def {
|
2012-10-15 20:04:15 -05:00
|
|
|
Some(type_def) => Some(type_def),
|
2013-06-18 11:39:16 -05:00
|
|
|
None => {
|
|
|
|
match type_def.module_def {
|
|
|
|
Some(module) => {
|
|
|
|
match module.def_id {
|
2013-09-01 20:45:37 -05:00
|
|
|
Some(did) => Some(DefMod(did)),
|
2013-06-18 11:39:16 -05:00
|
|
|
None => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => None,
|
|
|
|
}
|
|
|
|
}
|
2012-10-15 20:04:15 -05:00
|
|
|
}
|
2012-08-17 19:55:34 -05:00
|
|
|
}
|
|
|
|
}
|
2012-10-15 16:56:42 -05:00
|
|
|
}
|
|
|
|
ValueNS => {
|
|
|
|
match self.value_def {
|
|
|
|
None => None,
|
|
|
|
Some(value_def) => Some(value_def.def)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn privacy_for_namespace(&self, namespace: Namespace)
|
|
|
|
-> Option<Privacy> {
|
2012-10-15 16:56:42 -05:00
|
|
|
match namespace {
|
|
|
|
TypeNS => {
|
|
|
|
match self.type_def {
|
|
|
|
None => None,
|
2012-12-04 12:50:00 -06:00
|
|
|
Some(ref type_def) => Some((*type_def).privacy)
|
2012-10-15 16:56:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ValueNS => {
|
|
|
|
match self.value_def {
|
|
|
|
None => None,
|
|
|
|
Some(value_def) => Some(value_def.privacy)
|
|
|
|
}
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-06 18:10:56 -05:00
|
|
|
|
2013-08-31 11:13:04 -05:00
|
|
|
pub fn span_for_namespace(&self, namespace: Namespace) -> Option<Span> {
|
2012-10-15 16:56:42 -05:00
|
|
|
if self.defined_in_namespace(namespace) {
|
2012-08-06 18:10:56 -05:00
|
|
|
match namespace {
|
2013-05-14 23:49:30 -05:00
|
|
|
TypeNS => {
|
|
|
|
match self.type_def {
|
|
|
|
None => None,
|
|
|
|
Some(type_def) => type_def.type_span
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ValueNS => {
|
|
|
|
match self.value_def {
|
|
|
|
None => None,
|
|
|
|
Some(value_def) => value_def.value_span
|
|
|
|
}
|
|
|
|
}
|
2012-08-06 18:10:56 -05:00
|
|
|
}
|
2012-10-15 16:56:42 -05:00
|
|
|
} else {
|
|
|
|
None
|
2012-08-06 18:10:56 -05:00
|
|
|
}
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub fn NameBindings() -> NameBindings {
|
2012-09-05 17:58:43 -05:00
|
|
|
NameBindings {
|
|
|
|
type_def: None,
|
2013-05-14 23:49:30 -05:00
|
|
|
value_def: None
|
2012-09-05 17:58:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Interns the names of the primitive types.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub struct PrimitiveTypeTable {
|
2013-06-26 17:56:13 -05:00
|
|
|
primitive_types: HashMap<Name,prim_ty>,
|
2012-09-07 21:04:40 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl PrimitiveTypeTable {
|
|
|
|
pub fn intern(&mut self,
|
|
|
|
string: &str,
|
|
|
|
primitive_type: prim_ty) {
|
2013-06-26 17:56:13 -05:00
|
|
|
self.primitive_types.insert(token::intern(string), primitive_type);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-04 17:14:56 -05:00
|
|
|
pub fn PrimitiveTypeTable() -> PrimitiveTypeTable {
|
2013-03-22 21:26:41 -05:00
|
|
|
let mut table = PrimitiveTypeTable {
|
2013-04-03 08:28:36 -05:00
|
|
|
primitive_types: HashMap::new()
|
2012-09-05 17:58:43 -05:00
|
|
|
};
|
|
|
|
|
2013-06-04 17:14:56 -05:00
|
|
|
table.intern("bool", ty_bool);
|
2013-09-03 18:24:12 -05:00
|
|
|
table.intern("char", ty_char);
|
2013-06-04 17:14:56 -05:00
|
|
|
table.intern("f32", ty_float(ty_f32));
|
|
|
|
table.intern("f64", ty_float(ty_f64));
|
|
|
|
table.intern("int", ty_int(ty_i));
|
|
|
|
table.intern("i8", ty_int(ty_i8));
|
|
|
|
table.intern("i16", ty_int(ty_i16));
|
|
|
|
table.intern("i32", ty_int(ty_i32));
|
|
|
|
table.intern("i64", ty_int(ty_i64));
|
|
|
|
table.intern("str", ty_str);
|
|
|
|
table.intern("uint", ty_uint(ty_u));
|
|
|
|
table.intern("u8", ty_uint(ty_u8));
|
|
|
|
table.intern("u16", ty_uint(ty_u16));
|
|
|
|
table.intern("u32", ty_uint(ty_u32));
|
|
|
|
table.intern("u64", ty_uint(ty_u64));
|
2012-09-05 17:58:43 -05:00
|
|
|
|
|
|
|
return table;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-23 11:48:43 -05:00
|
|
|
pub fn namespace_error_to_str(ns: NamespaceError) -> &'static str {
|
2012-08-06 18:10:56 -05:00
|
|
|
match ns {
|
2013-06-23 11:48:43 -05:00
|
|
|
NoError => "",
|
|
|
|
ModuleError => "module",
|
|
|
|
TypeError => "type",
|
|
|
|
ValueError => "value",
|
2012-08-06 18:10:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:44:24 -06:00
|
|
|
pub fn Resolver(session: Session,
|
|
|
|
lang_items: LanguageItems,
|
2013-09-27 21:46:09 -05:00
|
|
|
crate_span: Span) -> Resolver {
|
2013-02-04 16:02:01 -06:00
|
|
|
let graph_root = @mut NameBindings();
|
2012-09-05 17:58:43 -05:00
|
|
|
|
2013-02-04 16:02:01 -06:00
|
|
|
graph_root.define_module(Public,
|
|
|
|
NoParentLink,
|
2013-09-01 20:45:37 -05:00
|
|
|
Some(DefId { crate: 0, node: 0 }),
|
2013-02-04 16:02:01 -06:00
|
|
|
NormalModuleKind,
|
2013-08-21 20:39:30 -05:00
|
|
|
false,
|
2013-09-27 21:46:09 -05:00
|
|
|
crate_span);
|
2012-09-05 17:58:43 -05:00
|
|
|
|
2013-02-04 16:02:01 -06:00
|
|
|
let current_module = graph_root.get_module();
|
2012-09-05 17:58:43 -05:00
|
|
|
|
2013-05-10 17:15:06 -05:00
|
|
|
let this = Resolver {
|
2013-02-21 13:08:50 -06:00
|
|
|
session: @session,
|
2013-06-27 19:41:35 -05:00
|
|
|
lang_items: lang_items,
|
2012-09-05 17:58:43 -05:00
|
|
|
|
|
|
|
// The outermost module has def ID 0; this is not reflected in the
|
|
|
|
// AST.
|
|
|
|
|
|
|
|
graph_root: graph_root,
|
|
|
|
|
2013-05-20 11:41:20 -05:00
|
|
|
method_map: @mut HashMap::new(),
|
2013-04-03 08:28:36 -05:00
|
|
|
structs: HashSet::new(),
|
2012-09-05 17:58:43 -05:00
|
|
|
|
2012-11-29 14:08:40 -06:00
|
|
|
unresolved_imports: 0,
|
2012-09-05 17:58:43 -05:00
|
|
|
|
|
|
|
current_module: current_module,
|
2013-05-02 13:32:37 -05:00
|
|
|
value_ribs: @mut ~[],
|
|
|
|
type_ribs: @mut ~[],
|
|
|
|
label_ribs: @mut ~[],
|
2012-09-05 17:58:43 -05:00
|
|
|
|
|
|
|
xray_context: NoXray,
|
|
|
|
current_trait_refs: None,
|
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
self_ident: special_idents::self_,
|
2013-01-09 16:12:28 -06:00
|
|
|
type_self_ident: special_idents::type_self,
|
|
|
|
|
2013-06-04 17:14:56 -05:00
|
|
|
primitive_type_table: @PrimitiveTypeTable(),
|
2012-09-05 17:58:43 -05:00
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
namespaces: ~[ TypeNS, ValueNS ],
|
2012-09-05 17:58:43 -05:00
|
|
|
|
2013-04-03 08:28:36 -05:00
|
|
|
def_map: @mut HashMap::new(),
|
|
|
|
export_map2: @mut HashMap::new(),
|
|
|
|
trait_map: HashMap::new(),
|
2013-04-30 00:15:17 -05:00
|
|
|
used_imports: HashSet::new(),
|
2012-09-05 17:58:43 -05:00
|
|
|
|
2013-08-13 19:54:14 -05:00
|
|
|
emit_errors: true,
|
2012-09-05 17:58:43 -05:00
|
|
|
intr: session.intr()
|
|
|
|
};
|
|
|
|
|
2013-05-10 17:15:06 -05:00
|
|
|
this
|
2012-09-05 17:58:43 -05:00
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// The main resolver class.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub struct Resolver {
|
2013-02-21 13:08:50 -06:00
|
|
|
session: @Session,
|
2012-09-06 21:40:15 -05:00
|
|
|
lang_items: LanguageItems,
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-09-19 20:50:24 -05:00
|
|
|
intr: @ident_interner,
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-02-04 16:02:01 -06:00
|
|
|
graph_root: @mut NameBindings,
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-06-26 17:56:13 -05:00
|
|
|
method_map: @mut HashMap<Name, HashSet<DefId>>,
|
2013-09-01 20:45:37 -05:00
|
|
|
structs: HashSet<DefId>,
|
2012-07-11 17:00:40 -05:00
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
// The number of imports that are currently unresolved.
|
2013-02-21 13:08:50 -06:00
|
|
|
unresolved_imports: uint,
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// The module that represents the current item scope.
|
2013-02-21 13:08:50 -06:00
|
|
|
current_module: @mut Module,
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// The current set of local scopes, for values.
|
2013-02-14 20:37:25 -06:00
|
|
|
// FIXME #4948: Reuse ribs to avoid allocation.
|
2013-05-02 13:32:37 -05:00
|
|
|
value_ribs: @mut ~[@Rib],
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// The current set of local scopes, for types.
|
2013-05-02 13:32:37 -05:00
|
|
|
type_ribs: @mut ~[@Rib],
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-08-14 21:20:56 -05:00
|
|
|
// The current set of local scopes, for labels.
|
2013-05-02 13:32:37 -05:00
|
|
|
label_ribs: @mut ~[@Rib],
|
2012-08-14 21:20:56 -05:00
|
|
|
|
2012-07-03 17:55:26 -05:00
|
|
|
// Whether the current context is an X-ray context. An X-ray context is
|
|
|
|
// allowed to access private names of any module.
|
2013-02-21 13:08:50 -06:00
|
|
|
xray_context: XrayFlag,
|
2012-07-03 17:55:26 -05:00
|
|
|
|
2012-07-11 17:00:40 -05:00
|
|
|
// The trait that the current context can refer to.
|
2013-09-01 20:45:37 -05:00
|
|
|
current_trait_refs: Option<~[DefId]>,
|
2012-07-11 17:00:40 -05:00
|
|
|
|
2012-09-19 20:52:49 -05:00
|
|
|
// The ident for the keyword "self".
|
2013-09-01 19:50:59 -05:00
|
|
|
self_ident: Ident,
|
2013-01-09 16:12:28 -06:00
|
|
|
// The ident for the non-keyword "Self".
|
2013-09-01 19:50:59 -05:00
|
|
|
type_self_ident: Ident,
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-09-19 20:52:49 -05:00
|
|
|
// The idents for the primitive types.
|
2012-09-06 21:40:15 -05:00
|
|
|
primitive_type_table: @PrimitiveTypeTable,
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// The four namespaces.
|
2012-09-06 21:40:15 -05:00
|
|
|
namespaces: ~[Namespace],
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-03-22 21:26:41 -05:00
|
|
|
def_map: DefMap,
|
|
|
|
export_map2: ExportMap2,
|
2012-09-06 21:40:15 -05:00
|
|
|
trait_map: TraitMap,
|
2013-04-30 00:15:17 -05:00
|
|
|
|
2013-08-13 19:54:14 -05:00
|
|
|
// Whether or not to print error messages. Can be set to true
|
|
|
|
// when getting additional info for error message suggestions,
|
|
|
|
// so as to avoid printing duplicate errors
|
|
|
|
emit_errors: bool,
|
|
|
|
|
2013-07-27 03:25:59 -05:00
|
|
|
used_imports: HashSet<NodeId>,
|
2012-09-07 21:04:40 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
struct BuildReducedGraphVisitor<'self> {
|
|
|
|
resolver: &'self mut Resolver,
|
2013-08-13 11:52:41 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
impl<'self> Visitor<ReducedGraphParent> for BuildReducedGraphVisitor<'self> {
|
2013-08-13 11:52:41 -05:00
|
|
|
|
|
|
|
fn visit_item(&mut self, item:@item, context:ReducedGraphParent) {
|
2013-09-26 21:10:16 -05:00
|
|
|
let p = self.resolver.build_reduced_graph_for_item(item, context);
|
|
|
|
visit::walk_item(self, item, p);
|
2013-08-13 11:52:41 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
fn visit_foreign_item(&mut self, foreign_item: @foreign_item,
|
|
|
|
context:ReducedGraphParent) {
|
|
|
|
do self.resolver.build_reduced_graph_for_foreign_item(foreign_item,
|
|
|
|
context) |r, c| {
|
|
|
|
let mut v = BuildReducedGraphVisitor{ resolver: r };
|
|
|
|
visit::walk_foreign_item(&mut v, foreign_item, c);
|
|
|
|
}
|
2013-08-13 11:52:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_view_item(&mut self, view_item:&view_item, context:ReducedGraphParent) {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolver.build_reduced_graph_for_view_item(view_item, context);
|
2013-08-13 11:52:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_block(&mut self, block:&Block, context:ReducedGraphParent) {
|
2013-09-26 21:10:16 -05:00
|
|
|
let np = self.resolver.build_reduced_graph_for_block(block, context);
|
|
|
|
visit::walk_block(self, block, np);
|
2013-08-13 11:52:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
struct UnusedImportCheckVisitor<'self> { resolver: &'self Resolver }
|
2013-08-13 11:52:41 -05:00
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
impl<'self> Visitor<()> for UnusedImportCheckVisitor<'self> {
|
2013-08-13 11:52:41 -05:00
|
|
|
fn visit_view_item(&mut self, vi:&view_item, _:()) {
|
|
|
|
self.resolver.check_for_item_unused_imports(vi);
|
|
|
|
visit::walk_view_item(self, vi, ());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
impl Resolver {
|
2012-07-04 16:53:12 -05:00
|
|
|
/// The main name resolution procedure.
|
2013-09-27 21:46:09 -05:00
|
|
|
pub fn resolve(&mut self, crate: &ast::Crate) {
|
|
|
|
self.build_reduced_graph(crate);
|
2012-07-06 21:06:58 -05:00
|
|
|
self.session.abort_if_errors();
|
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
self.resolve_imports();
|
2012-07-06 21:06:58 -05:00
|
|
|
self.session.abort_if_errors();
|
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
self.record_exports();
|
2012-07-06 21:06:58 -05:00
|
|
|
self.session.abort_if_errors();
|
|
|
|
|
2013-09-27 21:46:09 -05:00
|
|
|
self.resolve_crate(crate);
|
2012-07-06 21:06:58 -05:00
|
|
|
self.session.abort_if_errors();
|
|
|
|
|
2013-09-27 21:46:09 -05:00
|
|
|
self.check_for_unused_imports(crate);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Reduced graph building
|
|
|
|
//
|
|
|
|
// Here we build the "reduced graph": the graph of the module tree without
|
|
|
|
// any imports resolved.
|
|
|
|
//
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Constructs the reduced graph for the entire crate.
|
2013-09-27 21:46:09 -05:00
|
|
|
pub fn build_reduced_graph(&mut self, crate: &ast::Crate) {
|
2012-05-22 12:54:12 -05:00
|
|
|
let initial_parent =
|
2013-02-04 16:02:01 -06:00
|
|
|
ModuleReducedGraphParent(self.graph_root.get_module());
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-08-13 11:52:41 -05:00
|
|
|
let mut visitor = BuildReducedGraphVisitor { resolver: self, };
|
2013-09-27 21:46:09 -05:00
|
|
|
visit::walk_crate(&mut visitor, crate, initial_parent);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Returns the current module tracked by the reduced graph parent.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn get_module_from_parent(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
reduced_graph_parent: ReducedGraphParent)
|
|
|
|
-> @mut Module {
|
2012-08-06 14:34:08 -05:00
|
|
|
match reduced_graph_parent {
|
2012-08-03 21:59:04 -05:00
|
|
|
ModuleReducedGraphParent(module_) => {
|
2012-08-01 19:30:05 -05:00
|
|
|
return module_;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/**
|
|
|
|
* Adds a new child item to the module definition of the parent node and
|
|
|
|
* returns its corresponding name bindings as well as the current parent.
|
|
|
|
* Or, if we're inside a block, creates (or reuses) an anonymous module
|
|
|
|
* corresponding to the innermost block ID and returns the name bindings
|
|
|
|
* as well as the newly-created parent.
|
|
|
|
*
|
|
|
|
* If this node does not have a module definition and we are not inside
|
|
|
|
* a block, fails.
|
|
|
|
*/
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn add_child(&mut self,
|
2013-09-01 19:50:59 -05:00
|
|
|
name: Ident,
|
2013-05-31 17:17:22 -05:00
|
|
|
reduced_graph_parent: ReducedGraphParent,
|
|
|
|
duplicate_checking_mode: DuplicateCheckingMode,
|
|
|
|
// For printing errors
|
2013-08-31 11:13:04 -05:00
|
|
|
sp: Span)
|
2013-05-31 17:17:22 -05:00
|
|
|
-> (@mut NameBindings, ReducedGraphParent) {
|
2012-05-22 12:54:12 -05:00
|
|
|
// If this is the immediate descendant of a module, then we add the
|
|
|
|
// child name directly. Otherwise, we create or reuse an anonymous
|
|
|
|
// module and add the child to that.
|
|
|
|
|
2013-04-12 00:15:30 -05:00
|
|
|
let module_;
|
2012-08-06 14:34:08 -05:00
|
|
|
match reduced_graph_parent {
|
2012-08-03 21:59:04 -05:00
|
|
|
ModuleReducedGraphParent(parent_module) => {
|
2012-07-31 18:38:41 -05:00
|
|
|
module_ = parent_module;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add or reuse the child.
|
2012-07-31 18:38:41 -05:00
|
|
|
let new_parent = ModuleReducedGraphParent(module_);
|
2013-06-26 17:56:13 -05:00
|
|
|
match module_.children.find(&name.name) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-02-04 16:02:01 -06:00
|
|
|
let child = @mut NameBindings();
|
2013-06-26 17:56:13 -05:00
|
|
|
module_.children.insert(name.name, child);
|
2012-10-15 20:04:15 -05:00
|
|
|
return (child, new_parent);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-03-15 14:24:24 -05:00
|
|
|
Some(&child) => {
|
2013-03-26 21:53:33 -05:00
|
|
|
// Enforce the duplicate checking mode:
|
|
|
|
//
|
|
|
|
// * If we're requesting duplicate module checking, check that
|
|
|
|
// there isn't a module in the module with the same name.
|
|
|
|
//
|
|
|
|
// * If we're requesting duplicate type checking, check that
|
|
|
|
// there isn't a type in the module with the same name.
|
|
|
|
//
|
|
|
|
// * If we're requesting duplicate value checking, check that
|
|
|
|
// there isn't a value in the module with the same name.
|
|
|
|
//
|
|
|
|
// * If we're requesting duplicate type checking and duplicate
|
|
|
|
// value checking, check that there isn't a duplicate type
|
|
|
|
// and a duplicate value with the same name.
|
|
|
|
//
|
|
|
|
// * If no duplicate checking was requested at all, do
|
|
|
|
// nothing.
|
2012-10-15 20:04:15 -05:00
|
|
|
|
2013-06-23 11:48:43 -05:00
|
|
|
let mut duplicate_type = NoError;
|
2013-06-10 17:00:57 -05:00
|
|
|
let ns = match duplicate_checking_mode {
|
2012-10-15 20:04:15 -05:00
|
|
|
ForbidDuplicateModules => {
|
2013-06-23 11:48:43 -05:00
|
|
|
if (child.get_module_if_available().is_some()) {
|
|
|
|
duplicate_type = ModuleError;
|
|
|
|
}
|
2013-06-10 17:00:57 -05:00
|
|
|
Some(TypeNS)
|
2012-10-15 20:04:15 -05:00
|
|
|
}
|
|
|
|
ForbidDuplicateTypes => {
|
|
|
|
match child.def_for_namespace(TypeNS) {
|
2013-09-01 20:45:37 -05:00
|
|
|
Some(DefMod(_)) | None => {}
|
2013-06-23 11:48:43 -05:00
|
|
|
Some(_) => duplicate_type = TypeError
|
2012-10-15 20:04:15 -05:00
|
|
|
}
|
2013-06-10 17:00:57 -05:00
|
|
|
Some(TypeNS)
|
2012-10-15 20:04:15 -05:00
|
|
|
}
|
|
|
|
ForbidDuplicateValues => {
|
2013-06-23 11:48:43 -05:00
|
|
|
if child.defined_in_namespace(ValueNS) {
|
|
|
|
duplicate_type = ValueError;
|
|
|
|
}
|
2013-06-10 17:00:57 -05:00
|
|
|
Some(ValueNS)
|
2012-10-15 20:04:15 -05:00
|
|
|
}
|
|
|
|
ForbidDuplicateTypesAndValues => {
|
2013-06-10 17:00:57 -05:00
|
|
|
let mut n = None;
|
2012-10-15 20:04:15 -05:00
|
|
|
match child.def_for_namespace(TypeNS) {
|
2013-09-01 20:45:37 -05:00
|
|
|
Some(DefMod(_)) | None => {}
|
2013-06-10 17:00:57 -05:00
|
|
|
Some(_) => {
|
|
|
|
n = Some(TypeNS);
|
2013-06-23 11:48:43 -05:00
|
|
|
duplicate_type = TypeError;
|
2013-06-10 17:00:57 -05:00
|
|
|
}
|
2012-10-15 20:04:15 -05:00
|
|
|
};
|
|
|
|
if child.defined_in_namespace(ValueNS) {
|
2013-06-23 11:48:43 -05:00
|
|
|
duplicate_type = ValueError;
|
2013-06-10 17:00:57 -05:00
|
|
|
n = Some(ValueNS);
|
2012-10-15 20:04:15 -05:00
|
|
|
}
|
2013-06-10 17:00:57 -05:00
|
|
|
n
|
2012-10-15 20:04:15 -05:00
|
|
|
}
|
2013-06-10 17:00:57 -05:00
|
|
|
OverwriteDuplicates => None
|
|
|
|
};
|
2013-06-23 11:48:43 -05:00
|
|
|
if (duplicate_type != NoError) {
|
2012-10-15 20:04:15 -05:00
|
|
|
// Return an error here by looking up the namespace that
|
|
|
|
// had the duplicate.
|
2013-06-10 17:00:57 -05:00
|
|
|
let ns = ns.unwrap();
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(sp,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("duplicate definition of {} `{}`",
|
2013-06-23 11:48:43 -05:00
|
|
|
namespace_error_to_str(duplicate_type),
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(name)));
|
2013-06-10 16:50:12 -05:00
|
|
|
{
|
|
|
|
let r = child.span_for_namespace(ns);
|
2013-08-03 11:45:23 -05:00
|
|
|
for sp in r.iter() {
|
2013-06-10 16:50:12 -05:00
|
|
|
self.session.span_note(*sp,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("first definition of {} `{}` here",
|
2013-06-23 11:48:43 -05:00
|
|
|
namespace_error_to_str(duplicate_type),
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(name)));
|
2013-06-10 16:50:12 -05:00
|
|
|
}
|
2012-10-15 20:04:15 -05:00
|
|
|
}
|
2012-08-06 18:10:56 -05:00
|
|
|
}
|
2013-03-15 14:24:24 -05:00
|
|
|
return (child, new_parent);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn block_needs_anonymous_module(&mut self, block: &Block) -> bool {
|
2012-05-22 12:54:12 -05:00
|
|
|
// If the block has view items, we need an anonymous module.
|
2013-07-16 13:08:35 -05:00
|
|
|
if block.view_items.len() > 0 {
|
2012-08-01 19:30:05 -05:00
|
|
|
return true;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check each statement.
|
2013-08-03 11:45:23 -05:00
|
|
|
for statement in block.stmts.iter() {
|
2012-08-06 14:34:08 -05:00
|
|
|
match statement.node {
|
2013-09-01 20:45:37 -05:00
|
|
|
StmtDecl(declaration, _) => {
|
2012-08-06 14:34:08 -05:00
|
|
|
match declaration.node {
|
2013-09-01 20:45:37 -05:00
|
|
|
DeclItem(_) => {
|
2012-08-01 19:30:05 -05:00
|
|
|
return true;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Keep searching.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Keep searching.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we found neither view items nor items, we don't need to create
|
|
|
|
// an anonymous module.
|
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return false;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn get_parent_link(&mut self, parent: ReducedGraphParent, name: Ident)
|
2013-05-31 17:17:22 -05:00
|
|
|
-> ParentLink {
|
2012-08-06 14:34:08 -05:00
|
|
|
match parent {
|
2012-08-03 21:59:04 -05:00
|
|
|
ModuleReducedGraphParent(module_) => {
|
2012-08-01 19:30:05 -05:00
|
|
|
return ModuleParentLink(module_, name);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Constructs the reduced graph for one item.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn build_reduced_graph_for_item(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
item: @item,
|
2013-09-26 21:10:16 -05:00
|
|
|
parent: ReducedGraphParent)
|
|
|
|
-> ReducedGraphParent
|
|
|
|
{
|
2012-09-19 20:52:49 -05:00
|
|
|
let ident = item.ident;
|
2012-08-06 18:10:56 -05:00
|
|
|
let sp = item.span;
|
2013-01-30 19:20:02 -06:00
|
|
|
let privacy = visibility_to_privacy(item.vis);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-03-20 00:17:42 -05:00
|
|
|
match item.node {
|
2013-09-26 21:10:16 -05:00
|
|
|
item_mod(*) => {
|
2012-10-15 16:56:42 -05:00
|
|
|
let (name_bindings, new_parent) =
|
2012-10-15 20:04:15 -05:00
|
|
|
self.add_child(ident, parent, ForbidDuplicateModules, sp);
|
2012-08-06 18:10:56 -05:00
|
|
|
|
2012-09-19 20:52:49 -05:00
|
|
|
let parent_link = self.get_parent_link(new_parent, ident);
|
2013-09-01 20:45:37 -05:00
|
|
|
let def_id = DefId { crate: 0, node: item.id };
|
2013-02-04 16:02:01 -06:00
|
|
|
name_bindings.define_module(privacy,
|
|
|
|
parent_link,
|
|
|
|
Some(def_id),
|
|
|
|
NormalModuleKind,
|
2013-08-21 20:39:30 -05:00
|
|
|
false,
|
2013-02-04 16:02:01 -06:00
|
|
|
sp);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
ModuleReducedGraphParent(name_bindings.get_module())
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-10-15 20:04:15 -05:00
|
|
|
|
2013-03-20 00:17:42 -05:00
|
|
|
item_foreign_mod(ref fm) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
match fm.sort {
|
2012-10-15 16:56:42 -05:00
|
|
|
named => {
|
|
|
|
let (name_bindings, new_parent) =
|
2012-10-15 20:04:15 -05:00
|
|
|
self.add_child(ident, parent,
|
|
|
|
ForbidDuplicateModules, sp);
|
2012-08-29 14:22:05 -05:00
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
let parent_link = self.get_parent_link(new_parent,
|
|
|
|
ident);
|
2013-09-01 20:45:37 -05:00
|
|
|
let def_id = DefId { crate: 0, node: item.id };
|
2013-02-04 16:02:01 -06:00
|
|
|
name_bindings.define_module(privacy,
|
|
|
|
parent_link,
|
|
|
|
Some(def_id),
|
|
|
|
ExternModuleKind,
|
2013-08-21 20:39:30 -05:00
|
|
|
false,
|
2013-02-04 16:02:01 -06:00
|
|
|
sp);
|
2012-10-15 16:56:42 -05:00
|
|
|
|
|
|
|
ModuleReducedGraphParent(name_bindings.get_module())
|
|
|
|
}
|
2012-08-29 14:22:05 -05:00
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
// For anon foreign mods, the contents just go in the
|
|
|
|
// current scope
|
|
|
|
anonymous => parent
|
2013-09-26 21:10:16 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// These items live in the value namespace.
|
2013-06-21 20:46:34 -05:00
|
|
|
item_static(_, m, _) => {
|
2012-10-15 20:04:15 -05:00
|
|
|
let (name_bindings, _) =
|
|
|
|
self.add_child(ident, parent, ForbidDuplicateValues, sp);
|
2013-09-01 20:45:37 -05:00
|
|
|
let mutbl = m == ast::MutMutable;
|
2012-08-06 18:10:56 -05:00
|
|
|
|
2013-02-04 16:02:01 -06:00
|
|
|
name_bindings.define_value
|
2013-09-01 20:45:37 -05:00
|
|
|
(privacy, DefStatic(local_def(item.id), mutbl), sp);
|
2013-09-26 21:10:16 -05:00
|
|
|
parent
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-03-13 21:25:28 -05:00
|
|
|
item_fn(_, purity, _, _, _) => {
|
2012-10-15 20:04:15 -05:00
|
|
|
let (name_bindings, new_parent) =
|
|
|
|
self.add_child(ident, parent, ForbidDuplicateValues, sp);
|
2012-08-06 18:10:56 -05:00
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
let def = DefFn(local_def(item.id), purity);
|
2013-02-04 16:02:01 -06:00
|
|
|
name_bindings.define_value(privacy, def, sp);
|
2013-09-26 21:10:16 -05:00
|
|
|
new_parent
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// These items live in the type namespace.
|
2012-08-03 21:59:04 -05:00
|
|
|
item_ty(*) => {
|
2012-10-15 20:04:15 -05:00
|
|
|
let (name_bindings, _) =
|
|
|
|
self.add_child(ident, parent, ForbidDuplicateTypes, sp);
|
2012-08-06 18:10:56 -05:00
|
|
|
|
2013-02-04 16:02:01 -06:00
|
|
|
name_bindings.define_type
|
2013-09-01 20:45:37 -05:00
|
|
|
(privacy, DefTy(local_def(item.id)), sp);
|
2013-09-26 21:10:16 -05:00
|
|
|
parent
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-12-04 12:50:00 -06:00
|
|
|
item_enum(ref enum_definition, _) => {
|
2012-10-15 20:04:15 -05:00
|
|
|
let (name_bindings, new_parent) =
|
|
|
|
self.add_child(ident, parent, ForbidDuplicateTypes, sp);
|
2012-08-06 18:10:56 -05:00
|
|
|
|
2013-02-04 16:02:01 -06:00
|
|
|
name_bindings.define_type
|
2013-09-01 20:45:37 -05:00
|
|
|
(privacy, DefTy(local_def(item.id)), sp);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for variant in (*enum_definition).variants.iter() {
|
2013-06-11 21:55:16 -05:00
|
|
|
self.build_reduced_graph_for_variant(
|
|
|
|
variant,
|
2012-11-29 14:08:40 -06:00
|
|
|
local_def(item.id),
|
|
|
|
// inherited => privacy of the enum item
|
2013-01-30 19:20:02 -06:00
|
|
|
variant_visibility_to_privacy(variant.node.vis,
|
|
|
|
privacy == Public),
|
2013-09-26 21:10:16 -05:00
|
|
|
new_parent);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-09-26 21:10:16 -05:00
|
|
|
parent
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-13 17:17:35 -05:00
|
|
|
|
|
|
|
// These items live in both the type and value namespaces.
|
2012-12-10 15:47:54 -06:00
|
|
|
item_struct(struct_def, _) => {
|
2013-06-10 16:29:48 -05:00
|
|
|
// Adding to both Type and Value namespaces or just Type?
|
|
|
|
let (forbid, ctor_id) = match struct_def.ctor_id {
|
|
|
|
Some(ctor_id) => (ForbidDuplicateTypesAndValues, Some(ctor_id)),
|
|
|
|
None => (ForbidDuplicateTypes, None)
|
|
|
|
};
|
2012-08-08 13:52:23 -05:00
|
|
|
|
2013-06-10 16:29:48 -05:00
|
|
|
let (name_bindings, new_parent) = self.add_child(ident, parent, forbid, sp);
|
|
|
|
|
|
|
|
// Define a name in the type namespace.
|
2013-09-01 20:45:37 -05:00
|
|
|
name_bindings.define_type(privacy, DefTy(local_def(item.id)), sp);
|
2013-06-10 16:29:48 -05:00
|
|
|
|
|
|
|
// If this is a newtype or unit-like struct, define a name
|
|
|
|
// in the value namespace as well
|
|
|
|
do ctor_id.while_some |cid| {
|
2013-09-01 20:45:37 -05:00
|
|
|
name_bindings.define_value(privacy, DefStruct(local_def(cid)), sp);
|
2013-06-10 16:29:48 -05:00
|
|
|
None
|
2012-10-23 21:18:18 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-07-23 20:44:59 -05:00
|
|
|
// Record the def ID of this struct.
|
2013-03-22 21:26:41 -05:00
|
|
|
self.structs.insert(local_def(item.id));
|
2012-07-23 20:44:59 -05:00
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
new_parent
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-07-05 23:57:11 -05:00
|
|
|
item_impl(_, None, ref ty, ref methods) => {
|
2013-06-14 20:21:47 -05:00
|
|
|
// If this implements an anonymous trait, then add all the
|
|
|
|
// methods within to a new module, if the type was defined
|
|
|
|
// within this module.
|
2012-10-15 20:04:15 -05:00
|
|
|
//
|
|
|
|
// FIXME (#3785): This is quite unsatisfactory. Perhaps we
|
|
|
|
// should modify anonymous traits to only be implementable in
|
|
|
|
// the same module that declared the type.
|
|
|
|
|
2013-06-14 20:21:47 -05:00
|
|
|
// Create the module and add all methods.
|
2013-07-05 23:57:11 -05:00
|
|
|
match ty {
|
|
|
|
&Ty {
|
2013-07-05 05:15:21 -05:00
|
|
|
node: ty_path(ref path, _, _),
|
2013-06-14 20:21:47 -05:00
|
|
|
_
|
2013-08-07 11:47:28 -05:00
|
|
|
} if path.segments.len() == 1 => {
|
2012-10-15 20:04:15 -05:00
|
|
|
let name = path_to_ident(path);
|
|
|
|
|
2013-06-26 17:56:13 -05:00
|
|
|
let new_parent = match parent.children.find(&name.name) {
|
2013-06-09 06:35:24 -05:00
|
|
|
// It already exists
|
2013-06-14 20:21:47 -05:00
|
|
|
Some(&child) if child.get_module_if_available()
|
|
|
|
.is_some() &&
|
|
|
|
child.get_module().kind ==
|
|
|
|
ImplModuleKind => {
|
2013-06-09 06:35:24 -05:00
|
|
|
ModuleReducedGraphParent(child.get_module())
|
|
|
|
}
|
|
|
|
// Create the module
|
|
|
|
_ => {
|
|
|
|
let (name_bindings, new_parent) =
|
|
|
|
self.add_child(name,
|
|
|
|
parent,
|
|
|
|
ForbidDuplicateModules,
|
|
|
|
sp);
|
|
|
|
|
2013-06-14 20:21:47 -05:00
|
|
|
let parent_link =
|
|
|
|
self.get_parent_link(new_parent, ident);
|
2013-06-09 06:35:24 -05:00
|
|
|
let def_id = local_def(item.id);
|
|
|
|
name_bindings.define_module(Public,
|
|
|
|
parent_link,
|
|
|
|
Some(def_id),
|
|
|
|
ImplModuleKind,
|
2013-08-21 20:39:30 -05:00
|
|
|
false,
|
2013-06-09 06:35:24 -05:00
|
|
|
sp);
|
|
|
|
|
2013-06-14 20:21:47 -05:00
|
|
|
ModuleReducedGraphParent(
|
|
|
|
name_bindings.get_module())
|
2013-06-09 06:35:24 -05:00
|
|
|
}
|
|
|
|
};
|
2012-10-15 20:04:15 -05:00
|
|
|
|
2013-06-14 20:21:47 -05:00
|
|
|
// For each method...
|
2013-08-03 11:45:23 -05:00
|
|
|
for method in methods.iter() {
|
2013-06-14 20:21:47 -05:00
|
|
|
// Add the method to the module.
|
|
|
|
let ident = method.ident;
|
|
|
|
let (method_name_bindings, _) =
|
|
|
|
self.add_child(ident,
|
|
|
|
new_parent,
|
|
|
|
ForbidDuplicateValues,
|
|
|
|
method.span);
|
|
|
|
let def = match method.explicit_self.node {
|
2012-11-13 21:08:01 -06:00
|
|
|
sty_static => {
|
2013-08-08 13:38:10 -05:00
|
|
|
// Static methods become
|
|
|
|
// `def_static_method`s.
|
2013-09-01 20:45:37 -05:00
|
|
|
DefStaticMethod(local_def(method.id),
|
2013-08-08 13:38:10 -05:00
|
|
|
FromImpl(local_def(
|
|
|
|
item.id)),
|
|
|
|
method.purity)
|
2012-10-15 20:04:15 -05:00
|
|
|
}
|
2013-06-14 20:21:47 -05:00
|
|
|
_ => {
|
|
|
|
// Non-static methods become
|
|
|
|
// `def_method`s.
|
2013-09-01 20:45:37 -05:00
|
|
|
DefMethod(local_def(method.id), None)
|
2013-06-14 20:21:47 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
method_name_bindings.define_value(Public,
|
|
|
|
def,
|
|
|
|
method.span);
|
2012-10-15 20:04:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
parent
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
item_impl(_, Some(_), _, _) => parent,
|
2013-06-14 20:21:47 -05:00
|
|
|
|
2012-12-04 12:50:00 -06:00
|
|
|
item_trait(_, _, ref methods) => {
|
2012-10-15 20:04:15 -05:00
|
|
|
let (name_bindings, new_parent) =
|
|
|
|
self.add_child(ident, parent, ForbidDuplicateTypes, sp);
|
2012-08-06 18:10:56 -05:00
|
|
|
|
2013-06-14 20:21:47 -05:00
|
|
|
// Add all the methods within to a new module.
|
|
|
|
let parent_link = self.get_parent_link(parent, ident);
|
|
|
|
name_bindings.define_module(privacy,
|
|
|
|
parent_link,
|
|
|
|
Some(local_def(item.id)),
|
|
|
|
TraitModuleKind,
|
2013-08-21 20:39:30 -05:00
|
|
|
false,
|
2013-06-14 20:21:47 -05:00
|
|
|
sp);
|
|
|
|
let module_parent = ModuleReducedGraphParent(name_bindings.
|
|
|
|
get_module());
|
2012-11-12 14:15:08 -06:00
|
|
|
|
2012-07-11 17:00:40 -05:00
|
|
|
// Add the names of all the methods to the trait info.
|
2013-06-11 13:19:47 -05:00
|
|
|
let mut method_names = HashMap::new();
|
2013-08-03 11:45:23 -05:00
|
|
|
for method in methods.iter() {
|
2013-02-18 00:20:36 -06:00
|
|
|
let ty_m = trait_method_to_ty_method(method);
|
2012-08-02 18:01:38 -05:00
|
|
|
|
2012-09-19 20:52:49 -05:00
|
|
|
let ident = ty_m.ident;
|
2012-11-12 14:15:08 -06:00
|
|
|
|
2013-06-14 20:21:47 -05:00
|
|
|
// Add it as a name in the trait module.
|
|
|
|
let def = match ty_m.explicit_self.node {
|
|
|
|
sty_static => {
|
|
|
|
// Static methods become `def_static_method`s.
|
2013-09-01 20:45:37 -05:00
|
|
|
DefStaticMethod(local_def(ty_m.id),
|
2013-08-08 13:38:10 -05:00
|
|
|
FromTrait(local_def(item.id)),
|
2013-06-14 20:21:47 -05:00
|
|
|
ty_m.purity)
|
2012-11-12 14:15:08 -06:00
|
|
|
}
|
|
|
|
_ => {
|
2013-06-14 20:21:47 -05:00
|
|
|
// Non-static methods become `def_method`s.
|
2013-09-01 20:45:37 -05:00
|
|
|
DefMethod(local_def(ty_m.id),
|
2013-06-14 20:21:47 -05:00
|
|
|
Some(local_def(item.id)))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let (method_name_bindings, _) =
|
|
|
|
self.add_child(ident,
|
|
|
|
module_parent,
|
|
|
|
ForbidDuplicateValues,
|
|
|
|
ty_m.span);
|
|
|
|
method_name_bindings.define_value(Public, def, ty_m.span);
|
|
|
|
|
|
|
|
// Add it to the trait info if not static.
|
|
|
|
match ty_m.explicit_self.node {
|
|
|
|
sty_static => {}
|
|
|
|
_ => {
|
2013-06-26 17:56:13 -05:00
|
|
|
method_names.insert(ident.name, ());
|
2012-11-12 14:15:08 -06:00
|
|
|
}
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let def_id = local_def(item.id);
|
2013-08-03 11:45:23 -05:00
|
|
|
for (name, _) in method_names.iter() {
|
2013-05-20 11:41:20 -05:00
|
|
|
if !self.method_map.contains_key(name) {
|
|
|
|
self.method_map.insert(*name, HashSet::new());
|
|
|
|
}
|
|
|
|
match self.method_map.find_mut(name) {
|
|
|
|
Some(s) => { s.insert(def_id); },
|
2013-09-28 00:38:08 -05:00
|
|
|
_ => fail2!("Can't happen"),
|
2013-05-20 11:41:20 -05:00
|
|
|
}
|
|
|
|
}
|
2012-07-11 17:00:40 -05:00
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
name_bindings.define_type(privacy, DefTrait(def_id), sp);
|
2013-09-26 21:10:16 -05:00
|
|
|
new_parent
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-07-05 14:10:33 -05:00
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
item_mac(*) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
fail2!("item macros unimplemented")
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-07 21:12:58 -05:00
|
|
|
// Constructs the reduced graph for one variant. Variants exist in the
|
|
|
|
// type and/or value namespaces.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn build_reduced_graph_for_variant(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
variant: &variant,
|
2013-09-01 20:45:37 -05:00
|
|
|
item_id: DefId,
|
2013-05-31 17:17:22 -05:00
|
|
|
parent_privacy: Privacy,
|
2013-09-26 21:10:16 -05:00
|
|
|
parent: ReducedGraphParent) {
|
2012-09-19 20:52:49 -05:00
|
|
|
let ident = variant.node.name;
|
2013-06-20 18:14:57 -05:00
|
|
|
|
|
|
|
let privacy =
|
|
|
|
match variant.node.vis {
|
|
|
|
public => Public,
|
|
|
|
private => Private,
|
|
|
|
inherited => parent_privacy
|
|
|
|
};
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-08-07 21:12:58 -05:00
|
|
|
match variant.node.kind {
|
|
|
|
tuple_variant_kind(_) => {
|
2013-06-20 18:14:57 -05:00
|
|
|
let (child, _) = self.add_child(ident, parent, ForbidDuplicateValues,
|
|
|
|
variant.span);
|
2013-02-04 16:02:01 -06:00
|
|
|
child.define_value(privacy,
|
2013-09-01 20:45:37 -05:00
|
|
|
DefVariant(item_id,
|
2013-09-08 19:36:01 -05:00
|
|
|
local_def(variant.node.id), false),
|
2013-02-04 16:02:01 -06:00
|
|
|
variant.span);
|
2012-08-07 21:12:58 -05:00
|
|
|
}
|
|
|
|
struct_variant_kind(_) => {
|
2013-06-20 18:14:57 -05:00
|
|
|
let (child, _) = self.add_child(ident, parent, ForbidDuplicateTypesAndValues,
|
|
|
|
variant.span);
|
2013-02-04 16:02:01 -06:00
|
|
|
child.define_type(privacy,
|
2013-09-01 20:45:37 -05:00
|
|
|
DefVariant(item_id,
|
2013-09-08 19:36:01 -05:00
|
|
|
local_def(variant.node.id), true),
|
2013-02-04 16:02:01 -06:00
|
|
|
variant.span);
|
2013-03-22 21:26:41 -05:00
|
|
|
self.structs.insert(local_def(variant.node.id));
|
2012-08-07 21:12:58 -05:00
|
|
|
}
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-05-16 17:37:52 -05:00
|
|
|
/// Constructs the reduced graph for one 'view item'. View items consist
|
|
|
|
/// of imports and use directives.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn build_reduced_graph_for_view_item(&mut self,
|
2013-07-05 03:28:53 -05:00
|
|
|
view_item: &view_item,
|
2013-09-26 21:10:16 -05:00
|
|
|
parent: ReducedGraphParent) {
|
2013-01-30 19:20:02 -06:00
|
|
|
let privacy = visibility_to_privacy(view_item.vis);
|
2013-03-20 00:17:42 -05:00
|
|
|
match view_item.node {
|
|
|
|
view_item_use(ref view_paths) => {
|
2013-08-03 11:45:23 -05:00
|
|
|
for view_path in view_paths.iter() {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Extract and intern the module part of the path. For
|
|
|
|
// globs and lists, the path is found directly in the AST;
|
|
|
|
// for simple paths we have to munge the path a little.
|
|
|
|
|
2013-03-07 17:37:14 -06:00
|
|
|
let mut module_path = ~[];
|
2012-08-06 14:34:08 -05:00
|
|
|
match view_path.node {
|
2013-07-05 05:15:21 -05:00
|
|
|
view_path_simple(_, ref full_path, _) => {
|
2013-08-07 11:47:28 -05:00
|
|
|
let path_len = full_path.segments.len();
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(path_len != 0);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-08-07 11:47:28 -05:00
|
|
|
for (i, segment) in full_path.segments
|
|
|
|
.iter()
|
|
|
|
.enumerate() {
|
2012-11-29 14:08:40 -06:00
|
|
|
if i != path_len - 1 {
|
2013-08-07 11:47:28 -05:00
|
|
|
module_path.push(segment.identifier)
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-05 05:15:21 -05:00
|
|
|
view_path_glob(ref module_ident_path, _) |
|
|
|
|
view_path_list(ref module_ident_path, _, _) => {
|
2013-08-07 11:47:28 -05:00
|
|
|
for segment in module_ident_path.segments.iter() {
|
|
|
|
module_path.push(segment.identifier)
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build up the import directives.
|
2012-07-31 18:38:41 -05:00
|
|
|
let module_ = self.get_module_from_parent(parent);
|
2012-08-06 14:34:08 -05:00
|
|
|
match view_path.node {
|
2013-07-05 05:15:21 -05:00
|
|
|
view_path_simple(binding, ref full_path, id) => {
|
2013-08-07 11:47:28 -05:00
|
|
|
let source_ident =
|
|
|
|
full_path.segments.last().identifier;
|
2012-07-18 18:18:02 -05:00
|
|
|
let subclass = @SingleImport(binding,
|
2013-03-26 21:53:33 -05:00
|
|
|
source_ident);
|
2012-09-25 17:22:28 -05:00
|
|
|
self.build_import_directive(privacy,
|
|
|
|
module_,
|
2012-05-22 12:54:12 -05:00
|
|
|
module_path,
|
2012-07-06 21:06:58 -05:00
|
|
|
subclass,
|
2013-04-30 00:15:17 -05:00
|
|
|
view_path.span,
|
|
|
|
id);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-12-04 12:50:00 -06:00
|
|
|
view_path_list(_, ref source_idents, _) => {
|
2013-08-03 11:45:23 -05:00
|
|
|
for source_ident in source_idents.iter() {
|
2012-05-22 12:54:12 -05:00
|
|
|
let name = source_ident.node.name;
|
2013-03-26 21:53:33 -05:00
|
|
|
let subclass = @SingleImport(name, name);
|
2013-07-02 14:47:32 -05:00
|
|
|
self.build_import_directive(
|
|
|
|
privacy,
|
|
|
|
module_,
|
|
|
|
module_path.clone(),
|
|
|
|
subclass,
|
|
|
|
source_ident.span,
|
|
|
|
source_ident.node.id);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
2013-04-30 00:15:17 -05:00
|
|
|
view_path_glob(_, id) => {
|
2012-09-25 17:22:28 -05:00
|
|
|
self.build_import_directive(privacy,
|
|
|
|
module_,
|
2012-05-22 12:54:12 -05:00
|
|
|
module_path,
|
2012-07-06 21:06:58 -05:00
|
|
|
@GlobImport,
|
2013-04-30 00:15:17 -05:00
|
|
|
view_path.span,
|
|
|
|
id);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-31 15:47:32 -05:00
|
|
|
view_item_extern_mod(name, _, _, node_id) => {
|
|
|
|
// n.b. we don't need to look at the path option here, because cstore already did
|
2013-02-17 20:53:29 -06:00
|
|
|
match find_extern_mod_stmt_cnum(self.session.cstore,
|
2013-07-31 15:47:32 -05:00
|
|
|
node_id) {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(crate_id) => {
|
2013-09-01 20:45:37 -05:00
|
|
|
let def_id = DefId { crate: crate_id, node: 0 };
|
2012-05-22 12:54:12 -05:00
|
|
|
let parent_link = ModuleParentLink
|
2013-03-26 21:53:33 -05:00
|
|
|
(self.get_module_from_parent(parent), name);
|
2013-08-31 11:13:04 -05:00
|
|
|
let external_module = @mut Module::new(parent_link,
|
2013-01-30 19:20:02 -06:00
|
|
|
Some(def_id),
|
2013-08-21 20:39:30 -05:00
|
|
|
NormalModuleKind,
|
|
|
|
false);
|
2013-03-26 21:53:33 -05:00
|
|
|
|
|
|
|
parent.external_module_children.insert(
|
2013-06-26 17:56:13 -05:00
|
|
|
name.name,
|
2013-03-26 21:53:33 -05:00
|
|
|
external_module);
|
|
|
|
|
|
|
|
self.build_reduced_graph_for_external_crate(
|
|
|
|
external_module);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-03-26 21:53:33 -05:00
|
|
|
None => {} // Ignore.
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Constructs the reduced graph for one foreign item.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn build_reduced_graph_for_foreign_item(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
foreign_item: @foreign_item,
|
2013-09-26 21:10:16 -05:00
|
|
|
parent: ReducedGraphParent,
|
|
|
|
f: &fn(&mut Resolver,
|
|
|
|
ReducedGraphParent)) {
|
2012-07-18 18:18:02 -05:00
|
|
|
let name = foreign_item.ident;
|
2012-08-25 17:09:33 -05:00
|
|
|
let (name_bindings, new_parent) =
|
2012-10-15 20:04:15 -05:00
|
|
|
self.add_child(name, parent, ForbidDuplicateValues,
|
|
|
|
foreign_item.span);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-02-14 23:50:03 -06:00
|
|
|
match foreign_item.node {
|
2013-08-02 16:30:00 -05:00
|
|
|
foreign_item_fn(_, ref generics) => {
|
2013-09-01 20:45:37 -05:00
|
|
|
let def = DefFn(local_def(foreign_item.id), unsafe_fn);
|
2013-02-04 16:02:01 -06:00
|
|
|
name_bindings.define_value(Public, def, foreign_item.span);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-02-14 23:50:03 -06:00
|
|
|
do self.with_type_parameter_rib(
|
|
|
|
HasTypeParameters(
|
2013-09-26 21:10:16 -05:00
|
|
|
generics, foreign_item.id, 0, NormalRibKind)) |this|
|
2013-02-14 23:50:03 -06:00
|
|
|
{
|
2013-09-26 21:10:16 -05:00
|
|
|
f(this, new_parent)
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
2013-06-22 00:46:27 -05:00
|
|
|
foreign_item_static(_, m) => {
|
2013-09-01 20:45:37 -05:00
|
|
|
let def = DefStatic(local_def(foreign_item.id), m);
|
2013-02-04 16:02:01 -06:00
|
|
|
name_bindings.define_value(Public, def, foreign_item.span);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
f(self, new_parent)
|
2012-08-25 17:09:33 -05:00
|
|
|
}
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn build_reduced_graph_for_block(&mut self,
|
2013-07-19 00:38:55 -05:00
|
|
|
block: &Block,
|
2013-09-26 21:10:16 -05:00
|
|
|
parent: ReducedGraphParent)
|
|
|
|
-> ReducedGraphParent
|
|
|
|
{
|
2012-05-22 12:54:12 -05:00
|
|
|
if self.block_needs_anonymous_module(block) {
|
2013-07-16 13:08:35 -05:00
|
|
|
let block_id = block.id;
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building reduced graph for block) creating a new \
|
|
|
|
anonymous module for block {}",
|
2012-08-22 19:24:52 -05:00
|
|
|
block_id);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
let parent_module = self.get_module_from_parent(parent);
|
2013-08-31 11:13:04 -05:00
|
|
|
let new_module = @mut Module::new(
|
2013-02-21 13:08:50 -06:00
|
|
|
BlockParentLink(parent_module, block_id),
|
|
|
|
None,
|
2013-08-21 20:39:30 -05:00
|
|
|
AnonymousModuleKind,
|
|
|
|
false);
|
2012-05-22 12:54:12 -05:00
|
|
|
parent_module.anonymous_children.insert(block_id, new_module);
|
2013-09-26 21:10:16 -05:00
|
|
|
ModuleReducedGraphParent(new_module)
|
2012-05-22 12:54:12 -05:00
|
|
|
} else {
|
2013-09-26 21:10:16 -05:00
|
|
|
parent
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
fn handle_external_def(&mut self,
|
2013-09-01 20:45:37 -05:00
|
|
|
def: Def,
|
2013-08-21 19:26:33 -05:00
|
|
|
visibility: ast::visibility,
|
|
|
|
child_name_bindings: @mut NameBindings,
|
|
|
|
final_ident: &str,
|
2013-09-01 19:50:59 -05:00
|
|
|
ident: Ident,
|
2013-08-21 19:26:33 -05:00
|
|
|
new_parent: ReducedGraphParent) {
|
2013-05-16 17:37:52 -05:00
|
|
|
let privacy = visibility_to_privacy(visibility);
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building reduced graph for \
|
|
|
|
external crate) building external def, priv {:?}",
|
2013-08-07 02:11:34 -05:00
|
|
|
privacy);
|
2012-08-02 18:01:38 -05:00
|
|
|
match def {
|
2013-09-01 20:45:37 -05:00
|
|
|
DefMod(def_id) | DefForeignMod(def_id) | DefStruct(def_id) |
|
|
|
|
DefTy(def_id) => {
|
2013-03-20 00:17:42 -05:00
|
|
|
match child_name_bindings.type_def {
|
2013-05-29 18:59:33 -05:00
|
|
|
Some(TypeNsDef { module_def: Some(module_def), _ }) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building reduced graph for external crate) \
|
2012-10-15 20:04:15 -05:00
|
|
|
already created module");
|
|
|
|
module_def.def_id = Some(def_id);
|
|
|
|
}
|
|
|
|
Some(_) | None => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building reduced graph for \
|
2012-08-02 18:01:38 -05:00
|
|
|
external crate) building module \
|
2013-09-28 00:38:08 -05:00
|
|
|
{}", final_ident);
|
2012-09-19 20:52:49 -05:00
|
|
|
let parent_link = self.get_parent_link(new_parent, ident);
|
2012-08-02 18:01:38 -05:00
|
|
|
|
2013-08-21 19:26:33 -05:00
|
|
|
child_name_bindings.define_module(privacy,
|
|
|
|
parent_link,
|
|
|
|
Some(def_id),
|
|
|
|
NormalModuleKind,
|
2013-08-21 20:39:30 -05:00
|
|
|
true,
|
2013-08-21 19:26:33 -05:00
|
|
|
dummy_sp());
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-23 20:31:43 -05:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
match def {
|
2013-09-01 20:45:37 -05:00
|
|
|
DefMod(_) | DefForeignMod(_) => {}
|
2013-09-08 19:36:01 -05:00
|
|
|
DefVariant(_, variant_id, is_struct) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building reduced graph for external crate) building \
|
|
|
|
variant {}",
|
2013-05-16 17:37:52 -05:00
|
|
|
final_ident);
|
|
|
|
// We assume the parent is visible, or else we wouldn't have seen
|
|
|
|
// it.
|
|
|
|
let privacy = variant_visibility_to_privacy(visibility, true);
|
2013-09-08 19:36:01 -05:00
|
|
|
if is_struct {
|
|
|
|
child_name_bindings.define_type(privacy, def, dummy_sp());
|
|
|
|
self.structs.insert(variant_id);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
child_name_bindings.define_value(privacy, def, dummy_sp());
|
|
|
|
}
|
2013-05-16 17:37:52 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
DefFn(*) | DefStaticMethod(*) | DefStatic(*) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building reduced graph for external \
|
|
|
|
crate) building value (fn/static) {}", final_ident);
|
2013-05-16 17:37:52 -05:00
|
|
|
child_name_bindings.define_value(privacy, def, dummy_sp());
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
DefTrait(def_id) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building reduced graph for external \
|
|
|
|
crate) building type {}", final_ident);
|
2013-03-27 09:26:57 -05:00
|
|
|
|
|
|
|
// If this is a trait, add all the method names
|
|
|
|
// to the trait info.
|
|
|
|
|
2013-05-13 18:13:20 -05:00
|
|
|
let method_def_ids =
|
|
|
|
get_trait_method_def_ids(self.session.cstore, def_id);
|
2013-03-27 09:26:57 -05:00
|
|
|
let mut interned_method_names = HashSet::new();
|
2013-08-03 11:45:23 -05:00
|
|
|
for &method_def_id in method_def_ids.iter() {
|
2013-04-30 10:49:48 -05:00
|
|
|
let (method_name, explicit_self) =
|
|
|
|
get_method_name_and_explicit_self(self.session.cstore,
|
|
|
|
method_def_id);
|
2013-03-27 09:26:57 -05:00
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building reduced graph for \
|
2013-03-27 09:26:57 -05:00
|
|
|
external crate) ... adding \
|
2013-09-28 00:38:08 -05:00
|
|
|
trait method '{}'",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(method_name));
|
2013-03-27 09:26:57 -05:00
|
|
|
|
|
|
|
// Add it to the trait info if not static.
|
2013-04-30 10:49:48 -05:00
|
|
|
if explicit_self != sty_static {
|
2013-06-26 17:56:13 -05:00
|
|
|
interned_method_names.insert(method_name.name);
|
2013-03-27 09:26:57 -05:00
|
|
|
}
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
2013-08-03 11:45:23 -05:00
|
|
|
for name in interned_method_names.iter() {
|
2013-05-20 11:41:20 -05:00
|
|
|
if !self.method_map.contains_key(name) {
|
|
|
|
self.method_map.insert(*name, HashSet::new());
|
|
|
|
}
|
|
|
|
match self.method_map.find_mut(name) {
|
|
|
|
Some(s) => { s.insert(def_id); },
|
2013-09-28 00:38:08 -05:00
|
|
|
_ => fail2!("Can't happen"),
|
2013-05-20 11:41:20 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-02 18:01:38 -05:00
|
|
|
|
2013-05-16 17:37:52 -05:00
|
|
|
child_name_bindings.define_type(privacy, def, dummy_sp());
|
2013-05-13 18:13:20 -05:00
|
|
|
|
|
|
|
// Define a module if necessary.
|
|
|
|
let parent_link = self.get_parent_link(new_parent, ident);
|
2013-05-16 17:37:52 -05:00
|
|
|
child_name_bindings.set_module_kind(privacy,
|
2013-05-13 18:13:20 -05:00
|
|
|
parent_link,
|
|
|
|
Some(def_id),
|
|
|
|
TraitModuleKind,
|
2013-08-21 20:39:30 -05:00
|
|
|
true,
|
2013-05-13 18:13:20 -05:00
|
|
|
dummy_sp())
|
2013-03-27 09:26:57 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
DefTy(_) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building reduced graph for external \
|
|
|
|
crate) building type {}", final_ident);
|
2013-03-27 09:26:57 -05:00
|
|
|
|
2013-05-16 17:37:52 -05:00
|
|
|
child_name_bindings.define_type(privacy, def, dummy_sp());
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
DefStruct(def_id) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building reduced graph for external \
|
|
|
|
crate) building type and value for {}",
|
2012-10-08 13:49:01 -05:00
|
|
|
final_ident);
|
2013-05-16 17:37:52 -05:00
|
|
|
child_name_bindings.define_type(privacy, def, dummy_sp());
|
2013-08-07 13:52:33 -05:00
|
|
|
if get_struct_fields(self.session.cstore, def_id).len() == 0 {
|
|
|
|
child_name_bindings.define_value(privacy, def, dummy_sp());
|
|
|
|
}
|
2013-03-22 21:26:41 -05:00
|
|
|
self.structs.insert(def_id);
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
DefMethod(*) => {
|
2013-06-14 20:21:47 -05:00
|
|
|
// Ignored; handled elsewhere.
|
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
DefSelf(*) | DefArg(*) | DefLocal(*) |
|
|
|
|
DefPrimTy(*) | DefTyParam(*) | DefBinding(*) |
|
|
|
|
DefUse(*) | DefUpvar(*) | DefRegion(*) |
|
|
|
|
DefTyParamBinder(*) | DefLabel(*) | DefSelfTy(*) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
fail2!("didn't expect `{:?}`", def);
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-21 19:26:33 -05:00
|
|
|
/// Builds the reduced graph for a single item in an external crate.
|
2013-09-26 21:10:16 -05:00
|
|
|
fn build_reduced_graph_for_external_crate_def(&mut self,
|
2013-08-21 19:26:33 -05:00
|
|
|
root: @mut Module,
|
2013-08-31 11:13:04 -05:00
|
|
|
def_like: DefLike,
|
2013-08-07 02:11:34 -05:00
|
|
|
ident: Ident,
|
|
|
|
visibility: visibility) {
|
2013-08-21 19:26:33 -05:00
|
|
|
match def_like {
|
2013-08-31 11:13:04 -05:00
|
|
|
DlDef(def) => {
|
2013-08-21 19:26:33 -05:00
|
|
|
// Add the new child item, if necessary.
|
2013-08-21 20:39:30 -05:00
|
|
|
match def {
|
2013-09-01 20:45:37 -05:00
|
|
|
DefForeignMod(def_id) => {
|
2013-08-21 20:39:30 -05:00
|
|
|
// Foreign modules have no names. Recur and populate
|
|
|
|
// eagerly.
|
|
|
|
do csearch::each_child_of_item(self.session.cstore,
|
|
|
|
def_id)
|
2013-08-07 02:11:34 -05:00
|
|
|
|def_like, child_ident, vis| {
|
2013-08-21 20:39:30 -05:00
|
|
|
self.build_reduced_graph_for_external_crate_def(
|
|
|
|
root,
|
|
|
|
def_like,
|
2013-08-07 02:11:34 -05:00
|
|
|
child_ident,
|
|
|
|
vis)
|
2013-08-21 20:39:30 -05:00
|
|
|
}
|
|
|
|
}
|
2013-08-21 19:26:33 -05:00
|
|
|
_ => {
|
|
|
|
let (child_name_bindings, new_parent) =
|
|
|
|
self.add_child(ident,
|
|
|
|
ModuleReducedGraphParent(root),
|
|
|
|
OverwriteDuplicates,
|
|
|
|
dummy_sp());
|
|
|
|
|
|
|
|
self.handle_external_def(def,
|
2013-08-07 02:11:34 -05:00
|
|
|
visibility,
|
2013-08-21 19:26:33 -05:00
|
|
|
child_name_bindings,
|
|
|
|
self.session.str_of(ident),
|
|
|
|
ident,
|
|
|
|
new_parent);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-31 11:13:04 -05:00
|
|
|
DlImpl(def) => {
|
2013-08-21 19:26:33 -05:00
|
|
|
// We only process static methods of impls here.
|
|
|
|
match get_type_name_if_impl(self.session.cstore, def) {
|
|
|
|
None => {}
|
|
|
|
Some(final_ident) => {
|
|
|
|
let static_methods_opt =
|
|
|
|
get_static_methods_if_impl(self.session.cstore,
|
|
|
|
def);
|
|
|
|
match static_methods_opt {
|
|
|
|
Some(ref static_methods) if
|
|
|
|
static_methods.len() >= 1 => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building reduced graph for \
|
2013-08-21 19:26:33 -05:00
|
|
|
external crate) processing \
|
2013-09-28 00:38:08 -05:00
|
|
|
static methods for type name {}",
|
2013-08-21 19:26:33 -05:00
|
|
|
self.session.str_of(
|
|
|
|
final_ident));
|
|
|
|
|
|
|
|
let (child_name_bindings, new_parent) =
|
|
|
|
self.add_child(
|
|
|
|
final_ident,
|
|
|
|
ModuleReducedGraphParent(root),
|
|
|
|
OverwriteDuplicates,
|
|
|
|
dummy_sp());
|
|
|
|
|
|
|
|
// Process the static methods. First,
|
|
|
|
// create the module.
|
|
|
|
let type_module;
|
|
|
|
match child_name_bindings.type_def {
|
|
|
|
Some(TypeNsDef {
|
|
|
|
module_def: Some(module_def),
|
|
|
|
_
|
|
|
|
}) => {
|
|
|
|
// We already have a module. This
|
|
|
|
// is OK.
|
|
|
|
type_module = module_def;
|
|
|
|
|
|
|
|
// Mark it as an impl module if
|
|
|
|
// necessary.
|
|
|
|
type_module.kind = ImplModuleKind;
|
2012-10-18 15:29:34 -05:00
|
|
|
}
|
2013-08-21 19:26:33 -05:00
|
|
|
Some(_) | None => {
|
|
|
|
let parent_link =
|
|
|
|
self.get_parent_link(new_parent,
|
|
|
|
final_ident);
|
|
|
|
child_name_bindings.define_module(
|
|
|
|
Public,
|
|
|
|
parent_link,
|
|
|
|
Some(def),
|
|
|
|
ImplModuleKind,
|
2013-08-21 20:39:30 -05:00
|
|
|
true,
|
2013-08-21 19:26:33 -05:00
|
|
|
dummy_sp());
|
|
|
|
type_module =
|
|
|
|
child_name_bindings.
|
|
|
|
get_module();
|
2012-10-18 15:29:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-21 19:26:33 -05:00
|
|
|
// Add each static method to the module.
|
|
|
|
let new_parent =
|
|
|
|
ModuleReducedGraphParent(type_module);
|
|
|
|
for static_method_info in
|
|
|
|
static_methods.iter() {
|
|
|
|
let ident = static_method_info.ident;
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building reduced graph for \
|
2013-08-21 19:26:33 -05:00
|
|
|
external crate) creating \
|
2013-09-28 00:38:08 -05:00
|
|
|
static method '{}'",
|
2013-08-21 19:26:33 -05:00
|
|
|
self.session.str_of(ident));
|
|
|
|
|
|
|
|
let (method_name_bindings, _) =
|
|
|
|
self.add_child(ident,
|
|
|
|
new_parent,
|
|
|
|
OverwriteDuplicates,
|
|
|
|
dummy_sp());
|
2013-09-01 20:45:37 -05:00
|
|
|
let def = DefFn(
|
2013-08-21 19:26:33 -05:00
|
|
|
static_method_info.def_id,
|
|
|
|
static_method_info.purity);
|
2013-08-07 02:11:34 -05:00
|
|
|
|
|
|
|
let p = visibility_to_privacy(
|
|
|
|
static_method_info.vis);
|
2013-08-21 19:26:33 -05:00
|
|
|
method_name_bindings.define_value(
|
2013-08-07 02:11:34 -05:00
|
|
|
p, def, dummy_sp());
|
2013-08-21 19:26:33 -05:00
|
|
|
}
|
2012-10-18 15:29:34 -05:00
|
|
|
}
|
2013-08-21 19:26:33 -05:00
|
|
|
|
|
|
|
// Otherwise, do nothing.
|
|
|
|
Some(_) | None => {}
|
2012-10-18 15:29:34 -05:00
|
|
|
}
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
2013-08-31 11:13:04 -05:00
|
|
|
DlField => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building reduced graph for external crate) \
|
2013-08-21 19:26:33 -05:00
|
|
|
ignoring field");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-21 20:39:30 -05:00
|
|
|
/// Builds the reduced graph rooted at the given external module.
|
2013-09-26 21:10:16 -05:00
|
|
|
fn populate_external_module(&mut self, module: @mut Module) {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(populating external module) attempting to populate {}",
|
2013-08-23 20:31:43 -05:00
|
|
|
self.module_to_str(module));
|
|
|
|
|
2013-08-21 20:39:30 -05:00
|
|
|
let def_id = match module.def_id {
|
2013-08-23 20:31:43 -05:00
|
|
|
None => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(populating external module) ... no def ID!");
|
2013-08-23 20:31:43 -05:00
|
|
|
return
|
|
|
|
}
|
2013-08-21 20:39:30 -05:00
|
|
|
Some(def_id) => def_id,
|
|
|
|
};
|
|
|
|
|
|
|
|
do csearch::each_child_of_item(self.session.cstore, def_id)
|
2013-08-07 02:11:34 -05:00
|
|
|
|def_like, child_ident, visibility| {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(populating external module) ... found ident: {}",
|
2013-08-23 20:31:43 -05:00
|
|
|
token::ident_to_str(&child_ident));
|
2013-08-21 20:39:30 -05:00
|
|
|
self.build_reduced_graph_for_external_crate_def(module,
|
|
|
|
def_like,
|
2013-08-07 02:11:34 -05:00
|
|
|
child_ident,
|
|
|
|
visibility)
|
2013-08-21 20:39:30 -05:00
|
|
|
}
|
|
|
|
module.populated = true
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Ensures that the reduced graph rooted at the given external module
|
|
|
|
/// is built, building it if it is not.
|
2013-09-26 21:10:16 -05:00
|
|
|
fn populate_module_if_necessary(&mut self, module: @mut Module) {
|
2013-08-21 20:39:30 -05:00
|
|
|
if !module.populated {
|
|
|
|
self.populate_external_module(module)
|
|
|
|
}
|
|
|
|
assert!(module.populated)
|
|
|
|
}
|
|
|
|
|
2013-08-21 19:26:33 -05:00
|
|
|
/// Builds the reduced graph rooted at the 'use' directive for an external
|
|
|
|
/// crate.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn build_reduced_graph_for_external_crate(&mut self,
|
2013-08-21 19:26:33 -05:00
|
|
|
root: @mut Module) {
|
|
|
|
do csearch::each_top_level_item_of_crate(self.session.cstore,
|
|
|
|
root.def_id.unwrap().crate)
|
2013-08-07 02:11:34 -05:00
|
|
|
|def_like, ident, visibility| {
|
2013-08-21 19:26:33 -05:00
|
|
|
self.build_reduced_graph_for_external_crate_def(root,
|
|
|
|
def_like,
|
2013-08-07 02:11:34 -05:00
|
|
|
ident,
|
|
|
|
visibility)
|
2013-08-21 19:26:33 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Creates and adds an import directive to the given module.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn build_import_directive(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
privacy: Privacy,
|
|
|
|
module_: @mut Module,
|
2013-09-01 19:50:59 -05:00
|
|
|
module_path: ~[Ident],
|
2013-05-31 17:17:22 -05:00
|
|
|
subclass: @ImportDirectiveSubclass,
|
2013-08-31 11:13:04 -05:00
|
|
|
span: Span,
|
2013-07-27 03:25:59 -05:00
|
|
|
id: NodeId) {
|
2013-08-31 11:13:04 -05:00
|
|
|
let directive = @ImportDirective::new(privacy, module_path,
|
2013-04-30 00:15:17 -05:00
|
|
|
subclass, span, id);
|
2012-07-31 18:38:41 -05:00
|
|
|
module_.imports.push(directive);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// Bump the reference count on the name. Or, if this is a glob, set
|
|
|
|
// the appropriate flag.
|
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match *subclass {
|
2013-03-26 21:53:33 -05:00
|
|
|
SingleImport(target, _) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building import directive) building import \
|
|
|
|
directive: privacy {:?} {}::{}",
|
2012-10-02 20:13:56 -05:00
|
|
|
privacy,
|
2013-03-07 17:37:14 -06:00
|
|
|
self.idents_to_str(directive.module_path),
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(target));
|
2012-10-02 20:13:56 -05:00
|
|
|
|
2013-06-26 17:56:13 -05:00
|
|
|
match module_.import_resolutions.find(&target.name) {
|
2013-03-15 14:24:24 -05:00
|
|
|
Some(&resolution) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building import directive) bumping \
|
2012-10-02 20:13:56 -05:00
|
|
|
reference");
|
2012-11-29 14:08:40 -06:00
|
|
|
resolution.outstanding_references += 1;
|
2013-05-20 13:02:08 -05:00
|
|
|
|
|
|
|
// the source of this name is different now
|
|
|
|
resolution.privacy = privacy;
|
2013-06-09 23:39:15 -05:00
|
|
|
resolution.type_id = id;
|
|
|
|
resolution.value_id = id;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(building import directive) creating new");
|
2013-08-31 11:13:04 -05:00
|
|
|
let resolution = @mut ImportResolution::new(privacy, id);
|
2012-11-29 14:08:40 -06:00
|
|
|
resolution.outstanding_references = 1;
|
2013-06-26 17:56:13 -05:00
|
|
|
module_.import_resolutions.insert(target.name, resolution);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
GlobImport => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Set the glob flag. This tells us that we don't know the
|
|
|
|
// module's exports ahead of time.
|
|
|
|
|
2012-11-29 14:08:40 -06:00
|
|
|
module_.glob_count += 1;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-29 14:08:40 -06:00
|
|
|
self.unresolved_imports += 1;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Import resolution
|
|
|
|
//
|
|
|
|
// This is a fixed-point algorithm. We resolve imports until our efforts
|
|
|
|
// are stymied by an unresolved import; then we bail out of the current
|
|
|
|
// module and continue. We terminate successfully once no more imports
|
|
|
|
// remain or unsuccessfully when no forward progress in resolving imports
|
|
|
|
// is made.
|
|
|
|
|
2013-05-13 18:13:20 -05:00
|
|
|
/// Resolves all imports for the crate. This method performs the fixed-
|
|
|
|
/// point iteration.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_imports(&mut self) {
|
2012-11-29 14:08:40 -06:00
|
|
|
let mut i = 0;
|
|
|
|
let mut prev_unresolved_imports = 0;
|
2012-05-22 12:54:12 -05:00
|
|
|
loop {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving imports) iteration {}, {} imports left",
|
2012-08-22 19:24:52 -05:00
|
|
|
i, self.unresolved_imports);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-02-04 16:02:01 -06:00
|
|
|
let module_root = self.graph_root.get_module();
|
2012-05-22 12:54:12 -05:00
|
|
|
self.resolve_imports_for_module_subtree(module_root);
|
|
|
|
|
2012-11-29 14:08:40 -06:00
|
|
|
if self.unresolved_imports == 0 {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving imports) success");
|
2012-05-22 12:54:12 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.unresolved_imports == prev_unresolved_imports {
|
|
|
|
self.report_unresolved_imports(module_root);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-11-29 14:08:40 -06:00
|
|
|
i += 1;
|
2012-05-22 12:54:12 -05:00
|
|
|
prev_unresolved_imports = self.unresolved_imports;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
/// Attempts to resolve imports for the given module and all of its
|
|
|
|
/// submodules.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_imports_for_module_subtree(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
module_: @mut Module) {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving imports for module subtree) resolving {}",
|
2012-08-22 19:24:52 -05:00
|
|
|
self.module_to_str(module_));
|
2012-07-31 18:38:41 -05:00
|
|
|
self.resolve_imports_for_module(module_);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-08-21 20:39:30 -05:00
|
|
|
self.populate_module_if_necessary(module_);
|
2013-08-03 11:45:23 -05:00
|
|
|
for (_, &child_node) in module_.children.iter() {
|
2012-09-19 18:55:01 -05:00
|
|
|
match child_node.get_module_if_available() {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Nothing to do.
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(child_module) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
self.resolve_imports_for_module_subtree(child_module);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for (_, &child_module) in module_.anonymous_children.iter() {
|
2012-05-22 12:54:12 -05:00
|
|
|
self.resolve_imports_for_module_subtree(child_module);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Attempts to resolve imports for the given module only.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_imports_for_module(&mut self, module: @mut Module) {
|
2013-03-01 12:44:43 -06:00
|
|
|
if module.all_imports_resolved() {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving imports for module) all imports resolved for \
|
|
|
|
{}",
|
2013-03-01 12:44:43 -06:00
|
|
|
self.module_to_str(module));
|
2012-08-01 19:30:05 -05:00
|
|
|
return;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-03-16 13:11:31 -05:00
|
|
|
let imports = &mut *module.imports;
|
|
|
|
let import_count = imports.len();
|
2013-03-01 12:44:43 -06:00
|
|
|
while module.resolved_import_count < import_count {
|
|
|
|
let import_index = module.resolved_import_count;
|
2013-03-16 13:11:31 -05:00
|
|
|
let import_directive = imports[import_index];
|
2013-03-01 12:44:43 -06:00
|
|
|
match self.resolve_import_for_module(module, import_directive) {
|
2012-08-03 21:59:04 -05:00
|
|
|
Failed => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// We presumably emitted an error. Continue.
|
2013-09-28 00:38:08 -05:00
|
|
|
let msg = format!("failed to resolve import `{}`",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.import_path_to_str(
|
2013-03-07 17:37:14 -06:00
|
|
|
import_directive.module_path,
|
2013-02-10 18:33:16 -06:00
|
|
|
*import_directive.subclass));
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(import_directive.span, msg);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
Indeterminate => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Bail out. We'll come around next time.
|
|
|
|
break;
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
Success(()) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Good. Continue.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
module.resolved_import_count += 1;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn idents_to_str(&mut self, idents: &[Ident]) -> ~str {
|
2013-03-20 00:17:42 -05:00
|
|
|
let mut first = true;
|
|
|
|
let mut result = ~"";
|
2013-08-03 11:45:23 -05:00
|
|
|
for ident in idents.iter() {
|
2013-06-11 21:13:42 -05:00
|
|
|
if first {
|
|
|
|
first = false
|
|
|
|
} else {
|
|
|
|
result.push_str("::")
|
|
|
|
}
|
2013-06-14 21:40:11 -05:00
|
|
|
result.push_str(self.session.str_of(*ident));
|
2013-02-10 18:33:16 -06:00
|
|
|
};
|
2013-03-20 00:17:42 -05:00
|
|
|
return result;
|
2012-07-18 18:18:02 -05:00
|
|
|
}
|
2012-12-29 05:44:02 -06:00
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
fn path_idents_to_str(&mut self, path: &Path) -> ~str {
|
2013-09-01 19:50:59 -05:00
|
|
|
let identifiers: ~[ast::Ident] = path.segments
|
2013-08-07 11:47:28 -05:00
|
|
|
.iter()
|
2013-08-08 13:38:10 -05:00
|
|
|
.map(|seg| seg.identifier)
|
2013-08-07 11:47:28 -05:00
|
|
|
.collect();
|
|
|
|
self.idents_to_str(identifiers)
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn import_directive_subclass_to_str(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
subclass: ImportDirectiveSubclass)
|
2013-06-12 12:02:55 -05:00
|
|
|
-> @str {
|
2012-12-27 13:54:34 -06:00
|
|
|
match subclass {
|
2013-03-26 21:53:33 -05:00
|
|
|
SingleImport(_target, source) => self.session.str_of(source),
|
2013-06-12 12:02:55 -05:00
|
|
|
GlobImport => @"*"
|
2012-12-27 13:54:34 -06:00
|
|
|
}
|
|
|
|
}
|
2012-12-29 05:44:02 -06:00
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn import_path_to_str(&mut self,
|
2013-09-01 19:50:59 -05:00
|
|
|
idents: &[Ident],
|
2013-05-31 17:17:22 -05:00
|
|
|
subclass: ImportDirectiveSubclass)
|
2013-06-12 12:02:55 -05:00
|
|
|
-> @str {
|
2012-12-27 13:54:34 -06:00
|
|
|
if idents.is_empty() {
|
|
|
|
self.import_directive_subclass_to_str(subclass)
|
|
|
|
} else {
|
2013-09-28 00:38:08 -05:00
|
|
|
(format!("{}::{}",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.idents_to_str(idents),
|
|
|
|
self.import_directive_subclass_to_str(subclass))).to_managed()
|
2012-12-27 13:54:34 -06:00
|
|
|
}
|
|
|
|
}
|
2012-12-29 05:44:02 -06:00
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
/// Attempts to resolve the given import. The return value indicates
|
|
|
|
/// failure if we're certain the name does not exist, indeterminate if we
|
|
|
|
/// don't know whether the name exists at the moment due to other
|
|
|
|
/// currently-unresolved imports, or success if we know the name exists.
|
|
|
|
/// If successful, the resolved bindings are written into the module.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_import_for_module(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
module_: @mut Module,
|
|
|
|
import_directive: @ImportDirective)
|
|
|
|
-> ResolveResult<()> {
|
2013-03-01 12:44:43 -06:00
|
|
|
let mut resolution_result = Failed;
|
2013-03-07 17:37:14 -06:00
|
|
|
let module_path = &import_directive.module_path;
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving import for module) resolving import `{}::...` in \
|
|
|
|
`{}`",
|
2013-03-07 17:37:14 -06:00
|
|
|
self.idents_to_str(*module_path),
|
2012-08-22 19:24:52 -05:00
|
|
|
self.module_to_str(module_));
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
// First, resolve the module path for the directive, if necessary.
|
|
|
|
let containing_module = if module_path.len() == 0 {
|
|
|
|
// Use the crate root.
|
|
|
|
Some(self.graph_root.get_module())
|
2012-05-22 12:54:12 -05:00
|
|
|
} else {
|
2013-05-13 18:13:20 -05:00
|
|
|
match self.resolve_module_path(module_,
|
|
|
|
*module_path,
|
|
|
|
DontUseLexicalScope,
|
|
|
|
import_directive.span,
|
|
|
|
ImportSearch) {
|
2012-07-03 17:55:26 -05:00
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
Failed => None,
|
2012-08-03 21:59:04 -05:00
|
|
|
Indeterminate => {
|
2012-05-22 12:54:12 -05:00
|
|
|
resolution_result = Indeterminate;
|
2013-03-01 12:44:43 -06:00
|
|
|
None
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-03-01 12:44:43 -06:00
|
|
|
Success(containing_module) => Some(containing_module),
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
match containing_module {
|
|
|
|
None => {}
|
|
|
|
Some(containing_module) => {
|
|
|
|
// We found the module that the target is contained
|
|
|
|
// within. Attempt to resolve the import within it.
|
|
|
|
|
|
|
|
match *import_directive.subclass {
|
2013-03-26 21:53:33 -05:00
|
|
|
SingleImport(target, source) => {
|
2013-03-01 12:44:43 -06:00
|
|
|
resolution_result =
|
|
|
|
self.resolve_single_import(module_,
|
|
|
|
containing_module,
|
|
|
|
target,
|
2013-05-14 13:19:59 -05:00
|
|
|
source,
|
2013-06-09 23:39:15 -05:00
|
|
|
import_directive);
|
2013-03-01 12:44:43 -06:00
|
|
|
}
|
|
|
|
GlobImport => {
|
|
|
|
let privacy = import_directive.privacy;
|
|
|
|
resolution_result =
|
|
|
|
self.resolve_glob_import(privacy,
|
|
|
|
module_,
|
|
|
|
containing_module,
|
2013-04-30 00:15:17 -05:00
|
|
|
import_directive.id);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decrement the count of unresolved imports.
|
2012-08-06 14:34:08 -05:00
|
|
|
match resolution_result {
|
2012-08-03 21:59:04 -05:00
|
|
|
Success(()) => {
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(self.unresolved_imports >= 1);
|
2012-11-29 14:08:40 -06:00
|
|
|
self.unresolved_imports -= 1;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Nothing to do here; just return the error.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Decrement the count of unresolved globs if necessary. But only if
|
|
|
|
// the resolution result is indeterminate -- otherwise we'll stop
|
|
|
|
// processing imports here. (See the loop in
|
|
|
|
// resolve_imports_for_module.)
|
|
|
|
|
2012-09-07 20:53:14 -05:00
|
|
|
if !resolution_result.indeterminate() {
|
2012-08-06 14:34:08 -05:00
|
|
|
match *import_directive.subclass {
|
2012-08-03 21:59:04 -05:00
|
|
|
GlobImport => {
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(module_.glob_count >= 1);
|
2012-11-29 14:08:40 -06:00
|
|
|
module_.glob_count -= 1;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
SingleImport(*) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Ignore.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return resolution_result;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn create_name_bindings_from_module(module: @mut Module)
|
|
|
|
-> NameBindings {
|
2013-03-26 21:53:33 -05:00
|
|
|
NameBindings {
|
|
|
|
type_def: Some(TypeNsDef {
|
|
|
|
privacy: Public,
|
|
|
|
module_def: Some(module),
|
|
|
|
type_def: None,
|
2013-05-14 23:49:30 -05:00
|
|
|
type_span: None
|
2013-03-26 21:53:33 -05:00
|
|
|
}),
|
|
|
|
value_def: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_single_import(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
module_: @mut Module,
|
|
|
|
containing_module: @mut Module,
|
2013-09-01 19:50:59 -05:00
|
|
|
target: Ident,
|
|
|
|
source: Ident,
|
2013-06-09 23:39:15 -05:00
|
|
|
directive: &ImportDirective)
|
2013-05-31 17:17:22 -05:00
|
|
|
-> ResolveResult<()> {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving single import) resolving `{}` = `{}::{}` from \
|
|
|
|
`{}`",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(target),
|
2012-05-22 12:54:12 -05:00
|
|
|
self.module_to_str(containing_module),
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(source),
|
2012-08-22 19:24:52 -05:00
|
|
|
self.module_to_str(module_));
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
// We need to resolve both namespaces for this to succeed.
|
2012-05-22 12:54:12 -05:00
|
|
|
//
|
|
|
|
|
|
|
|
let mut value_result = UnknownResult;
|
|
|
|
let mut type_result = UnknownResult;
|
|
|
|
|
|
|
|
// Search for direct children of the containing module.
|
2013-08-21 20:39:30 -05:00
|
|
|
self.populate_module_if_necessary(containing_module);
|
2013-06-26 17:56:13 -05:00
|
|
|
match containing_module.children.find(&source.name) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Continue.
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(child_name_bindings) => {
|
2013-03-21 02:26:38 -05:00
|
|
|
if child_name_bindings.defined_in_namespace(ValueNS) {
|
2012-05-22 12:54:12 -05:00
|
|
|
value_result = BoundResult(containing_module,
|
2013-03-21 02:26:38 -05:00
|
|
|
*child_name_bindings);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-03-21 02:26:38 -05:00
|
|
|
if child_name_bindings.defined_in_namespace(TypeNS) {
|
2012-05-22 12:54:12 -05:00
|
|
|
type_result = BoundResult(containing_module,
|
2013-03-21 02:26:38 -05:00
|
|
|
*child_name_bindings);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
// Unless we managed to find a result in both namespaces (unlikely),
|
|
|
|
// search imports as well.
|
|
|
|
match (value_result, type_result) {
|
2013-05-13 18:13:20 -05:00
|
|
|
(BoundResult(*), BoundResult(*)) => {} // Continue.
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// If there is an unresolved glob at this point in the
|
|
|
|
// containing module, bail out. We don't know enough to be
|
|
|
|
// able to resolve this import.
|
|
|
|
|
2012-11-29 14:08:40 -06:00
|
|
|
if containing_module.glob_count > 0 {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving single import) unresolved glob; \
|
2012-08-22 19:24:52 -05:00
|
|
|
bailing out");
|
2012-08-01 19:30:05 -05:00
|
|
|
return Indeterminate;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now search the exported imports within the containing
|
|
|
|
// module.
|
|
|
|
|
2013-06-26 17:56:13 -05:00
|
|
|
match containing_module.import_resolutions.find(&source.name) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// The containing module definitely doesn't have an
|
|
|
|
// exported import with the name in question. We can
|
|
|
|
// therefore accurately report that the names are
|
|
|
|
// unbound.
|
|
|
|
|
2012-08-27 18:26:35 -05:00
|
|
|
if value_result.is_unknown() {
|
2012-05-22 12:54:12 -05:00
|
|
|
value_result = UnboundResult;
|
|
|
|
}
|
2012-08-27 18:26:35 -05:00
|
|
|
if type_result.is_unknown() {
|
2012-05-22 12:54:12 -05:00
|
|
|
type_result = UnboundResult;
|
|
|
|
}
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(import_resolution)
|
2012-05-22 12:54:12 -05:00
|
|
|
if import_resolution.outstanding_references
|
2012-11-29 14:08:40 -06:00
|
|
|
== 0 => {
|
2012-07-06 21:06:58 -05:00
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
fn get_binding(this: &mut Resolver,
|
2013-04-30 00:15:17 -05:00
|
|
|
import_resolution:
|
2013-02-04 16:02:01 -06:00
|
|
|
@mut ImportResolution,
|
2012-05-22 12:54:12 -05:00
|
|
|
namespace: Namespace)
|
|
|
|
-> NamespaceResult {
|
2012-11-29 14:08:40 -06:00
|
|
|
|
2012-10-02 20:13:56 -05:00
|
|
|
// Import resolutions must be declared with "pub"
|
|
|
|
// in order to be exported.
|
|
|
|
if import_resolution.privacy == Private {
|
|
|
|
return UnboundResult;
|
|
|
|
}
|
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match (*import_resolution).
|
2012-05-22 12:54:12 -05:00
|
|
|
target_for_namespace(namespace) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-08-01 19:30:05 -05:00
|
|
|
return UnboundResult;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(target) => {
|
2013-06-09 23:39:15 -05:00
|
|
|
let id = import_resolution.id(namespace);
|
|
|
|
this.used_imports.insert(id);
|
2012-08-01 19:30:05 -05:00
|
|
|
return BoundResult(target.target_module,
|
2013-06-09 23:39:15 -05:00
|
|
|
target.bindings);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The name is an import which has been fully
|
|
|
|
// resolved. We can, therefore, just follow it.
|
2012-08-27 18:26:35 -05:00
|
|
|
if value_result.is_unknown() {
|
2013-04-30 00:15:17 -05:00
|
|
|
value_result = get_binding(self, *import_resolution,
|
2012-05-22 12:54:12 -05:00
|
|
|
ValueNS);
|
|
|
|
}
|
2012-08-27 18:26:35 -05:00
|
|
|
if type_result.is_unknown() {
|
2013-04-30 00:15:17 -05:00
|
|
|
type_result = get_binding(self, *import_resolution,
|
2012-05-22 12:54:12 -05:00
|
|
|
TypeNS);
|
|
|
|
}
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(_) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// The import is unresolved. Bail out.
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving single import) unresolved import; \
|
2012-08-22 19:24:52 -05:00
|
|
|
bailing out");
|
2012-08-01 19:30:05 -05:00
|
|
|
return Indeterminate;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-26 21:53:33 -05:00
|
|
|
// If we didn't find a result in the type namespace, search the
|
|
|
|
// external modules.
|
|
|
|
match type_result {
|
|
|
|
BoundResult(*) => {}
|
|
|
|
_ => {
|
|
|
|
match containing_module.external_module_children
|
2013-06-26 17:56:13 -05:00
|
|
|
.find(&source.name) {
|
2013-03-26 21:53:33 -05:00
|
|
|
None => {} // Continue.
|
|
|
|
Some(module) => {
|
|
|
|
let name_bindings =
|
|
|
|
@mut Resolver::create_name_bindings_from_module(
|
|
|
|
*module);
|
|
|
|
type_result = BoundResult(containing_module,
|
|
|
|
name_bindings);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
// We've successfully resolved the import. Write the results in.
|
2013-06-26 17:56:13 -05:00
|
|
|
assert!(module_.import_resolutions.contains_key(&target.name));
|
|
|
|
let import_resolution = module_.import_resolutions.get(&target.name);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match value_result {
|
2012-08-03 21:59:04 -05:00
|
|
|
BoundResult(target_module, name_bindings) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving single import) found value target");
|
2012-05-22 12:54:12 -05:00
|
|
|
import_resolution.value_target =
|
2013-08-31 11:13:04 -05:00
|
|
|
Some(Target::new(target_module, name_bindings));
|
2013-06-09 23:39:15 -05:00
|
|
|
import_resolution.value_id = directive.id;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
UnboundResult => { /* Continue. */ }
|
|
|
|
UnknownResult => {
|
2013-09-28 00:38:08 -05:00
|
|
|
fail2!("value result should be known at this point");
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-06 14:34:08 -05:00
|
|
|
match type_result {
|
2012-08-03 21:59:04 -05:00
|
|
|
BoundResult(target_module, name_bindings) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving single import) found type target: {:?}",
|
2013-08-03 18:59:24 -05:00
|
|
|
name_bindings.type_def.unwrap().type_def);
|
2012-05-22 12:54:12 -05:00
|
|
|
import_resolution.type_target =
|
2013-08-31 11:13:04 -05:00
|
|
|
Some(Target::new(target_module, name_bindings));
|
2013-06-09 23:39:15 -05:00
|
|
|
import_resolution.type_id = directive.id;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
UnboundResult => { /* Continue. */ }
|
|
|
|
UnknownResult => {
|
2013-09-28 00:38:08 -05:00
|
|
|
fail2!("type result should be known at this point");
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-18 17:14:23 -05:00
|
|
|
let i = import_resolution;
|
2013-05-12 08:03:39 -05:00
|
|
|
let mut resolve_fail = false;
|
|
|
|
let mut priv_fail = false;
|
2012-10-15 16:56:42 -05:00
|
|
|
match (i.value_target, i.type_target) {
|
2012-11-29 14:08:40 -06:00
|
|
|
// If this name wasn't found in either namespace, it's definitely
|
|
|
|
// unresolved.
|
2013-05-12 08:03:39 -05:00
|
|
|
(None, None) => { resolve_fail = true; }
|
2012-11-29 14:08:40 -06:00
|
|
|
// If it's private, it's also unresolved.
|
|
|
|
(Some(t), None) | (None, Some(t)) => {
|
2013-03-16 13:11:31 -05:00
|
|
|
let bindings = &mut *t.bindings;
|
|
|
|
match bindings.type_def {
|
2012-11-29 14:08:40 -06:00
|
|
|
Some(ref type_def) => {
|
|
|
|
if type_def.privacy == Private {
|
2013-05-12 08:03:39 -05:00
|
|
|
priv_fail = true;
|
2012-11-29 14:08:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
2013-03-16 13:11:31 -05:00
|
|
|
match bindings.value_def {
|
2012-11-29 14:08:40 -06:00
|
|
|
Some(ref value_def) => {
|
|
|
|
if value_def.privacy == Private {
|
2013-05-12 08:03:39 -05:00
|
|
|
priv_fail = true;
|
2012-11-29 14:08:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// It's also an error if there's both a type and a value with this
|
|
|
|
// name, but both are private
|
|
|
|
(Some(val), Some(ty)) => {
|
|
|
|
match (val.bindings.value_def, ty.bindings.value_def) {
|
|
|
|
(Some(ref value_def), Some(ref type_def)) =>
|
|
|
|
if value_def.privacy == Private
|
|
|
|
&& type_def.privacy == Private {
|
2013-05-12 08:03:39 -05:00
|
|
|
priv_fail = true;
|
2012-11-29 14:08:40 -06:00
|
|
|
},
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
2012-07-18 17:14:23 -05:00
|
|
|
}
|
|
|
|
|
2013-06-09 23:39:15 -05:00
|
|
|
let span = directive.span;
|
2013-05-12 08:03:39 -05:00
|
|
|
if resolve_fail {
|
2013-09-28 00:38:08 -05:00
|
|
|
let msg = format!("unresolved import: there is no `{}` in `{}`",
|
|
|
|
self.session.str_of(source),
|
|
|
|
self.module_to_str(containing_module));
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_error(span, msg);
|
2013-05-12 08:03:39 -05:00
|
|
|
return Failed;
|
|
|
|
} else if priv_fail {
|
2013-09-28 00:38:08 -05:00
|
|
|
let msg = format!("unresolved import: found `{}` in `{}` but it is \
|
|
|
|
private", self.session.str_of(source),
|
|
|
|
self.module_to_str(containing_module));
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_error(span, msg);
|
2013-05-12 08:03:39 -05:00
|
|
|
return Failed;
|
|
|
|
}
|
|
|
|
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(import_resolution.outstanding_references >= 1);
|
2012-11-29 14:08:40 -06:00
|
|
|
import_resolution.outstanding_references -= 1;
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-24 15:56:52 -05:00
|
|
|
// record what this import resolves to for later uses in documentation,
|
|
|
|
// this may resolve to either a value or a type, but for documentation
|
|
|
|
// purposes it's good enough to just favor one over the other.
|
|
|
|
match i.value_target {
|
|
|
|
Some(target) => {
|
|
|
|
self.def_map.insert(i.value_id,
|
|
|
|
target.bindings.value_def.get_ref().def);
|
|
|
|
}
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
match i.type_target {
|
|
|
|
Some(target) => {
|
|
|
|
match target.bindings.type_def.get_ref().type_def {
|
|
|
|
Some(def) => { self.def_map.insert(i.type_id, def); }
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving single import) successfully resolved import");
|
2012-08-01 19:30:05 -05:00
|
|
|
return Success(());
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-03-26 21:53:33 -05:00
|
|
|
// Resolves a glob import. Note that this function cannot fail; it either
|
|
|
|
// succeeds or bails out (as importing * from an empty module or a module
|
|
|
|
// that exports nothing is valid).
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_glob_import(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
privacy: Privacy,
|
|
|
|
module_: @mut Module,
|
|
|
|
containing_module: @mut Module,
|
2013-07-27 03:25:59 -05:00
|
|
|
id: NodeId)
|
2013-05-31 17:17:22 -05:00
|
|
|
-> ResolveResult<()> {
|
2012-05-22 12:54:12 -05:00
|
|
|
// This function works in a highly imperative manner; it eagerly adds
|
|
|
|
// everything it can to the list of import resolutions of the module
|
|
|
|
// node.
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving glob import) resolving {:?} glob import", privacy);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// We must bail out if the node has unresolved imports of any kind
|
|
|
|
// (including globs).
|
|
|
|
if !(*containing_module).all_imports_resolved() {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving glob import) target module has unresolved \
|
2012-08-22 19:24:52 -05:00
|
|
|
imports; bailing out");
|
2012-08-01 19:30:05 -05:00
|
|
|
return Indeterminate;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(containing_module.glob_count, 0);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// Add all resolved imports from the containing module.
|
2013-08-03 11:45:23 -05:00
|
|
|
for (ident, target_import_resolution) in containing_module.import_resolutions.iter() {
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving glob import) writing module resolution \
|
|
|
|
{:?} into `{}`",
|
2013-03-16 14:49:12 -05:00
|
|
|
target_import_resolution.type_target.is_none(),
|
2012-08-22 19:24:52 -05:00
|
|
|
self.module_to_str(module_));
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// Here we merge two import resolutions.
|
2013-03-21 03:10:57 -05:00
|
|
|
match module_.import_resolutions.find(ident) {
|
2013-02-25 13:10:42 -06:00
|
|
|
None if target_import_resolution.privacy == Public => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Simple: just copy the old import resolution.
|
2012-07-06 21:06:58 -05:00
|
|
|
let new_import_resolution =
|
2013-08-31 11:13:04 -05:00
|
|
|
@mut ImportResolution::new(privacy, id);
|
2012-05-22 12:54:12 -05:00
|
|
|
new_import_resolution.value_target =
|
2013-06-27 19:41:35 -05:00
|
|
|
target_import_resolution.value_target;
|
2012-05-22 12:54:12 -05:00
|
|
|
new_import_resolution.type_target =
|
2013-06-27 19:41:35 -05:00
|
|
|
target_import_resolution.type_target;
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-07-31 18:38:41 -05:00
|
|
|
module_.import_resolutions.insert
|
2013-03-21 03:10:57 -05:00
|
|
|
(*ident, new_import_resolution);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-02-25 13:10:42 -06:00
|
|
|
None => { /* continue ... */ }
|
2013-03-15 14:24:24 -05:00
|
|
|
Some(&dest_import_resolution) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Merge the two import resolutions at a finer-grained
|
|
|
|
// level.
|
|
|
|
|
2013-03-20 00:17:42 -05:00
|
|
|
match target_import_resolution.value_target {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Continue.
|
|
|
|
}
|
2013-05-29 18:59:33 -05:00
|
|
|
Some(value_target) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
dest_import_resolution.value_target =
|
2013-03-20 00:17:42 -05:00
|
|
|
Some(value_target);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
2013-03-20 00:17:42 -05:00
|
|
|
match target_import_resolution.type_target {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Continue.
|
|
|
|
}
|
2013-05-29 18:59:33 -05:00
|
|
|
Some(type_target) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
dest_import_resolution.type_target =
|
2013-03-20 00:17:42 -05:00
|
|
|
Some(type_target);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-26 17:56:13 -05:00
|
|
|
let merge_import_resolution = |name,
|
2013-03-26 21:53:33 -05:00
|
|
|
name_bindings: @mut NameBindings| {
|
2013-04-12 00:15:30 -05:00
|
|
|
let dest_import_resolution;
|
2013-06-26 17:56:13 -05:00
|
|
|
match module_.import_resolutions.find(&name) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Create a new import resolution from this child.
|
2013-08-31 11:13:04 -05:00
|
|
|
dest_import_resolution = @mut ImportResolution::new(privacy, id);
|
2012-07-31 18:38:41 -05:00
|
|
|
module_.import_resolutions.insert
|
2013-06-26 17:56:13 -05:00
|
|
|
(name, dest_import_resolution);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-03-15 14:24:24 -05:00
|
|
|
Some(&existing_import_resolution) => {
|
|
|
|
dest_import_resolution = existing_import_resolution;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving glob import) writing resolution `{}` in `{}` \
|
|
|
|
to `{}`, privacy={:?}",
|
2013-06-26 17:56:13 -05:00
|
|
|
interner_get(name),
|
2012-05-22 12:54:12 -05:00
|
|
|
self.module_to_str(containing_module),
|
2012-11-13 17:43:54 -06:00
|
|
|
self.module_to_str(module_),
|
2013-06-27 19:41:35 -05:00
|
|
|
dest_import_resolution.privacy);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// Merge the child item into the import resolution.
|
2013-03-21 02:26:38 -05:00
|
|
|
if name_bindings.defined_in_public_namespace(ValueNS) {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving glob import) ... for value target");
|
2012-05-22 12:54:12 -05:00
|
|
|
dest_import_resolution.value_target =
|
2013-08-31 11:13:04 -05:00
|
|
|
Some(Target::new(containing_module, name_bindings));
|
2013-08-29 21:48:37 -05:00
|
|
|
dest_import_resolution.value_id = id;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-03-21 02:26:38 -05:00
|
|
|
if name_bindings.defined_in_public_namespace(TypeNS) {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving glob import) ... for type target");
|
2012-05-22 12:54:12 -05:00
|
|
|
dest_import_resolution.type_target =
|
2013-08-31 11:13:04 -05:00
|
|
|
Some(Target::new(containing_module, name_bindings));
|
2013-08-29 21:48:37 -05:00
|
|
|
dest_import_resolution.type_id = id;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-03-26 21:53:33 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// Add all children from the containing module.
|
2013-08-21 20:39:30 -05:00
|
|
|
self.populate_module_if_necessary(containing_module);
|
2013-06-26 17:56:13 -05:00
|
|
|
for (&name, name_bindings) in containing_module.children.iter() {
|
|
|
|
merge_import_resolution(name, *name_bindings);
|
2013-03-26 21:53:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add external module children from the containing module.
|
2013-06-26 17:56:13 -05:00
|
|
|
for (&name, module) in containing_module.external_module_children.iter() {
|
2013-03-26 21:53:33 -05:00
|
|
|
let name_bindings =
|
|
|
|
@mut Resolver::create_name_bindings_from_module(*module);
|
2013-06-26 17:56:13 -05:00
|
|
|
merge_import_resolution(name, name_bindings);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-24 15:56:52 -05:00
|
|
|
// Record the destination of this import
|
|
|
|
match containing_module.def_id {
|
|
|
|
Some(did) => {
|
|
|
|
self.def_map.insert(id, DefMod(did));
|
|
|
|
}
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving glob import) successfully resolved import");
|
2012-08-01 19:30:05 -05:00
|
|
|
return Success(());
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
/// Resolves the given module path from the given root `module_`.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_module_path_from_root(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
module_: @mut Module,
|
2013-09-01 19:50:59 -05:00
|
|
|
module_path: &[Ident],
|
2013-05-31 17:17:22 -05:00
|
|
|
index: uint,
|
2013-08-31 11:13:04 -05:00
|
|
|
span: Span,
|
2013-05-31 17:17:22 -05:00
|
|
|
mut name_search_type: NameSearchType)
|
|
|
|
-> ResolveResult<@mut Module> {
|
2012-07-31 18:38:41 -05:00
|
|
|
let mut search_module = module_;
|
2012-05-22 12:54:12 -05:00
|
|
|
let mut index = index;
|
2013-03-07 17:37:14 -06:00
|
|
|
let module_path_len = module_path.len();
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// Resolve the module part of the path. This does not involve looking
|
|
|
|
// upward though scope chains; we simply resolve names directly in
|
|
|
|
// modules as we go.
|
|
|
|
while index < module_path_len {
|
2013-03-07 17:37:14 -06:00
|
|
|
let name = module_path[index];
|
2012-12-13 15:05:22 -06:00
|
|
|
match self.resolve_name_in_module(search_module,
|
|
|
|
name,
|
|
|
|
TypeNS,
|
2013-03-01 12:44:43 -06:00
|
|
|
name_search_type) {
|
2012-08-03 21:59:04 -05:00
|
|
|
Failed => {
|
2013-05-08 20:47:34 -05:00
|
|
|
let segment_name = self.session.str_of(name);
|
|
|
|
let module_name = self.module_to_str(search_module);
|
2013-05-13 18:13:20 -05:00
|
|
|
if "???" == module_name {
|
2013-08-31 11:13:04 -05:00
|
|
|
let span = Span {
|
2013-05-13 18:13:20 -05:00
|
|
|
lo: span.lo,
|
2013-06-09 09:44:58 -05:00
|
|
|
hi: span.lo + BytePos(segment_name.len()),
|
2013-05-13 18:13:20 -05:00
|
|
|
expn_info: span.expn_info,
|
|
|
|
};
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("unresolved import. maybe \
|
2013-05-13 18:13:20 -05:00
|
|
|
a missing `extern mod \
|
2013-09-28 00:38:08 -05:00
|
|
|
{}`?",
|
2013-06-12 12:02:55 -05:00
|
|
|
segment_name));
|
2013-05-08 20:47:34 -05:00
|
|
|
return Failed;
|
|
|
|
}
|
2013-09-28 00:38:08 -05:00
|
|
|
self.resolve_error(span, format!("unresolved import: could not find `{}` in \
|
|
|
|
`{}`.", segment_name, module_name));
|
2012-08-01 19:30:05 -05:00
|
|
|
return Failed;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
Indeterminate => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving module path for import) module \
|
|
|
|
resolution is indeterminate: {}",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(name));
|
2012-08-01 19:30:05 -05:00
|
|
|
return Indeterminate;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
Success(target) => {
|
2012-10-15 20:04:15 -05:00
|
|
|
// Check to see whether there are type bindings, and, if
|
|
|
|
// so, whether there is a module within.
|
2012-10-15 16:56:42 -05:00
|
|
|
match target.bindings.type_def {
|
2013-05-29 18:59:33 -05:00
|
|
|
Some(type_def) => {
|
2012-10-15 20:04:15 -05:00
|
|
|
match type_def.module_def {
|
|
|
|
None => {
|
|
|
|
// Not a module.
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("not a \
|
|
|
|
module `{}`",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.
|
2012-10-15 20:04:15 -05:00
|
|
|
str_of(
|
|
|
|
name)));
|
|
|
|
return Failed;
|
|
|
|
}
|
2013-05-13 18:13:20 -05:00
|
|
|
Some(module_def) => {
|
|
|
|
// If we're doing the search for an
|
|
|
|
// import, do not allow traits and impls
|
|
|
|
// to be selected.
|
|
|
|
match (name_search_type,
|
|
|
|
module_def.kind) {
|
|
|
|
(ImportSearch, TraitModuleKind) |
|
|
|
|
(ImportSearch, ImplModuleKind) => {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(
|
2013-05-13 18:13:20 -05:00
|
|
|
span,
|
2013-05-23 11:39:10 -05:00
|
|
|
"cannot import from a trait \
|
|
|
|
or type implementation");
|
2013-05-13 18:13:20 -05:00
|
|
|
return Failed;
|
|
|
|
}
|
|
|
|
(_, _) => search_module = module_def,
|
|
|
|
}
|
2012-10-15 20:04:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
// There are no type bindings at all.
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("not a module `{}`",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(
|
2012-10-15 20:04:15 -05:00
|
|
|
name)));
|
2012-08-01 19:30:05 -05:00
|
|
|
return Failed;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-29 14:08:40 -06:00
|
|
|
index += 1;
|
2013-03-01 12:44:43 -06:00
|
|
|
|
2013-05-13 18:13:20 -05:00
|
|
|
// After the first element of the path, allow searching only
|
|
|
|
// through public identifiers.
|
2013-03-01 12:44:43 -06:00
|
|
|
//
|
2013-05-13 18:13:20 -05:00
|
|
|
// XXX: Rip this out and move it to the privacy checker.
|
|
|
|
if name_search_type == PathPublicOrPrivateSearch {
|
|
|
|
name_search_type = PathPublicOnlySearch
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return Success(search_module);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
/// Attempts to resolve the module part of an import directive or path
|
|
|
|
/// rooted at the given module.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_module_path(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
module_: @mut Module,
|
2013-09-01 19:50:59 -05:00
|
|
|
module_path: &[Ident],
|
2013-05-31 17:17:22 -05:00
|
|
|
use_lexical_scope: UseLexicalScopeFlag,
|
2013-08-31 11:13:04 -05:00
|
|
|
span: Span,
|
2013-05-31 17:17:22 -05:00
|
|
|
name_search_type: NameSearchType)
|
|
|
|
-> ResolveResult<@mut Module> {
|
2013-03-01 12:44:43 -06:00
|
|
|
let module_path_len = module_path.len();
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(module_path_len > 0);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving module path for import) processing `{}` rooted at \
|
|
|
|
`{}`",
|
2013-03-07 17:37:14 -06:00
|
|
|
self.idents_to_str(module_path),
|
2012-08-22 19:24:52 -05:00
|
|
|
self.module_to_str(module_));
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
// Resolve the module prefix, if any.
|
|
|
|
let module_prefix_result = self.resolve_module_prefix(module_,
|
|
|
|
module_path);
|
2012-12-13 15:05:22 -06:00
|
|
|
|
2013-04-12 00:15:30 -05:00
|
|
|
let search_module;
|
|
|
|
let start_index;
|
2012-12-23 16:41:37 -06:00
|
|
|
match module_prefix_result {
|
2012-08-03 21:59:04 -05:00
|
|
|
Failed => {
|
2013-05-13 22:18:27 -05:00
|
|
|
let mpath = self.idents_to_str(module_path);
|
2013-06-11 06:37:22 -05:00
|
|
|
match mpath.rfind(':') {
|
2013-05-14 18:49:04 -05:00
|
|
|
Some(idx) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
self.resolve_error(span, format!("unresolved import: could not find `{}` \
|
|
|
|
in `{}`",
|
2013-06-11 06:37:22 -05:00
|
|
|
// idx +- 1 to account for the colons
|
|
|
|
// on either side
|
|
|
|
mpath.slice_from(idx + 1),
|
|
|
|
mpath.slice_to(idx - 1)));
|
2013-05-14 18:49:04 -05:00
|
|
|
},
|
|
|
|
None => (),
|
|
|
|
};
|
2012-08-01 19:30:05 -05:00
|
|
|
return Failed;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
Indeterminate => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving module path for import) indeterminate; \
|
2012-08-22 19:24:52 -05:00
|
|
|
bailing");
|
2012-08-01 19:30:05 -05:00
|
|
|
return Indeterminate;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-12-23 16:41:37 -06:00
|
|
|
Success(NoPrefixFound) => {
|
|
|
|
// There was no prefix, so we're considering the first element
|
|
|
|
// of the path. How we handle this depends on whether we were
|
|
|
|
// instructed to use lexical scope or not.
|
|
|
|
match use_lexical_scope {
|
|
|
|
DontUseLexicalScope => {
|
|
|
|
// This is a crate-relative path. We will start the
|
|
|
|
// resolution process at index zero.
|
|
|
|
search_module = self.graph_root.get_module();
|
|
|
|
start_index = 0;
|
|
|
|
}
|
|
|
|
UseLexicalScope => {
|
|
|
|
// This is not a crate-relative path. We resolve the
|
|
|
|
// first component of the path in the current lexical
|
|
|
|
// scope and then proceed to resolve below that.
|
|
|
|
let result = self.resolve_module_in_lexical_scope(
|
|
|
|
module_,
|
2013-03-07 17:37:14 -06:00
|
|
|
module_path[0]);
|
2012-12-23 16:41:37 -06:00
|
|
|
match result {
|
|
|
|
Failed => {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(span, "unresolved name");
|
2012-12-23 16:41:37 -06:00
|
|
|
return Failed;
|
|
|
|
}
|
|
|
|
Indeterminate => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving module path for import) \
|
2012-12-23 16:41:37 -06:00
|
|
|
indeterminate; bailing");
|
|
|
|
return Indeterminate;
|
|
|
|
}
|
|
|
|
Success(containing_module) => {
|
|
|
|
search_module = containing_module;
|
|
|
|
start_index = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Success(PrefixFound(containing_module, index)) => {
|
|
|
|
search_module = containing_module;
|
|
|
|
start_index = index;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
self.resolve_module_path_from_root(search_module,
|
|
|
|
module_path,
|
|
|
|
start_index,
|
|
|
|
span,
|
2013-05-13 18:13:20 -05:00
|
|
|
name_search_type)
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
/// Invariant: This must only be called during main resolution, not during
|
|
|
|
/// import resolution.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_item_in_lexical_scope(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
module_: @mut Module,
|
2013-09-01 19:50:59 -05:00
|
|
|
name: Ident,
|
2013-05-31 17:17:22 -05:00
|
|
|
namespace: Namespace,
|
|
|
|
search_through_modules:
|
|
|
|
SearchThroughModulesFlag)
|
|
|
|
-> ResolveResult<Target> {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving item in lexical scope) resolving `{}` in \
|
|
|
|
namespace {:?} in `{}`",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(name),
|
2012-05-22 12:54:12 -05:00
|
|
|
namespace,
|
2012-08-22 19:24:52 -05:00
|
|
|
self.module_to_str(module_));
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// The current module node is handled specially. First, check for
|
|
|
|
// its immediate children.
|
2013-08-21 20:39:30 -05:00
|
|
|
self.populate_module_if_necessary(module_);
|
2013-06-26 17:56:13 -05:00
|
|
|
match module_.children.find(&name.name) {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(name_bindings)
|
2013-03-21 02:26:38 -05:00
|
|
|
if name_bindings.defined_in_namespace(namespace) => {
|
2013-08-31 11:13:04 -05:00
|
|
|
return Success(Target::new(module_, *name_bindings));
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(_) | None => { /* Not found; continue. */ }
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now check for its import directives. We don't have to have resolved
|
|
|
|
// all its imports in the usual way; this is because chains of
|
|
|
|
// adjacent import statements are processed as though they mutated the
|
|
|
|
// current scope.
|
2013-06-26 17:56:13 -05:00
|
|
|
match module_.import_resolutions.find(&name.name) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Not found; continue.
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(import_resolution) => {
|
2012-08-06 14:34:08 -05:00
|
|
|
match (*import_resolution).target_for_namespace(namespace) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Not found; continue.
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving item in lexical scope) found \
|
|
|
|
import resolution, but not in namespace {:?}",
|
2012-08-22 19:24:52 -05:00
|
|
|
namespace);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(target) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving item in lexical scope) using \
|
2013-02-25 13:10:42 -06:00
|
|
|
import resolution");
|
2013-06-09 23:39:15 -05:00
|
|
|
self.used_imports.insert(import_resolution.id(namespace));
|
2013-06-27 19:41:35 -05:00
|
|
|
return Success(target);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-26 21:53:33 -05:00
|
|
|
// Search for external modules.
|
|
|
|
if namespace == TypeNS {
|
2013-06-26 17:56:13 -05:00
|
|
|
match module_.external_module_children.find(&name.name) {
|
2013-03-26 21:53:33 -05:00
|
|
|
None => {}
|
|
|
|
Some(module) => {
|
|
|
|
let name_bindings =
|
|
|
|
@mut Resolver::create_name_bindings_from_module(
|
|
|
|
*module);
|
2013-08-31 11:13:04 -05:00
|
|
|
return Success(Target::new(module_, name_bindings));
|
2013-03-26 21:53:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
// Finally, proceed up the scope chain looking for parent modules.
|
2012-07-31 18:38:41 -05:00
|
|
|
let mut search_module = module_;
|
2012-05-22 12:54:12 -05:00
|
|
|
loop {
|
|
|
|
// Go to the next parent.
|
2012-08-06 14:34:08 -05:00
|
|
|
match search_module.parent_link {
|
2012-08-03 21:59:04 -05:00
|
|
|
NoParentLink => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// No more parents. This module was unresolved.
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving item in lexical scope) unresolved \
|
2012-08-22 19:24:52 -05:00
|
|
|
module");
|
2012-08-01 19:30:05 -05:00
|
|
|
return Failed;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-12-23 16:41:37 -06:00
|
|
|
ModuleParentLink(parent_module_node, _) => {
|
|
|
|
match search_through_modules {
|
|
|
|
DontSearchThroughModules => {
|
|
|
|
match search_module.kind {
|
|
|
|
NormalModuleKind => {
|
|
|
|
// We stop the search here.
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving item in lexical \
|
2012-12-23 16:41:37 -06:00
|
|
|
scope) unresolved module: not \
|
|
|
|
searching through module \
|
|
|
|
parents");
|
|
|
|
return Failed;
|
|
|
|
}
|
|
|
|
ExternModuleKind |
|
|
|
|
TraitModuleKind |
|
2013-05-13 18:13:20 -05:00
|
|
|
ImplModuleKind |
|
2012-12-23 16:41:37 -06:00
|
|
|
AnonymousModuleKind => {
|
|
|
|
search_module = parent_module_node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SearchThroughModules => {
|
|
|
|
search_module = parent_module_node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
BlockParentLink(parent_module_node, _) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
search_module = parent_module_node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resolve the name in the parent module.
|
2012-12-13 15:05:22 -06:00
|
|
|
match self.resolve_name_in_module(search_module,
|
|
|
|
name,
|
|
|
|
namespace,
|
2013-05-13 18:13:20 -05:00
|
|
|
PathPublicOrPrivateSearch) {
|
2012-08-03 21:59:04 -05:00
|
|
|
Failed => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Continue up the search chain.
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
Indeterminate => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// We couldn't see through the higher scope because of an
|
|
|
|
// unresolved import higher up. Bail.
|
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving item in lexical scope) indeterminate \
|
2012-08-22 19:24:52 -05:00
|
|
|
higher scope; bailing");
|
2012-08-01 19:30:05 -05:00
|
|
|
return Indeterminate;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
Success(target) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// We found the module.
|
2013-06-27 19:41:35 -05:00
|
|
|
return Success(target);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
/// Resolves a module name in the current lexical scope.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_module_in_lexical_scope(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
module_: @mut Module,
|
2013-09-01 19:50:59 -05:00
|
|
|
name: Ident)
|
2013-05-31 17:17:22 -05:00
|
|
|
-> ResolveResult<@mut Module> {
|
2012-12-13 15:05:22 -06:00
|
|
|
// If this module is an anonymous module, resolve the item in the
|
|
|
|
// lexical scope. Otherwise, resolve the item from the crate root.
|
2012-12-23 16:41:37 -06:00
|
|
|
let resolve_result = self.resolve_item_in_lexical_scope(
|
|
|
|
module_, name, TypeNS, DontSearchThroughModules);
|
2012-12-13 15:05:22 -06:00
|
|
|
match resolve_result {
|
2012-08-03 21:59:04 -05:00
|
|
|
Success(target) => {
|
2013-03-16 13:11:31 -05:00
|
|
|
let bindings = &mut *target.bindings;
|
|
|
|
match bindings.type_def {
|
2012-12-04 12:50:00 -06:00
|
|
|
Some(ref type_def) => {
|
|
|
|
match (*type_def).module_def {
|
2012-10-15 20:04:15 -05:00
|
|
|
None => {
|
2013-09-28 00:38:08 -05:00
|
|
|
error2!("!!! (resolving module in lexical \
|
2012-10-15 20:04:15 -05:00
|
|
|
scope) module wasn't actually a \
|
|
|
|
module!");
|
|
|
|
return Failed;
|
|
|
|
}
|
|
|
|
Some(module_def) => {
|
|
|
|
return Success(module_def);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => {
|
2013-09-28 00:38:08 -05:00
|
|
|
error2!("!!! (resolving module in lexical scope) module
|
2012-08-22 19:24:52 -05:00
|
|
|
wasn't actually a module!");
|
2012-08-01 19:30:05 -05:00
|
|
|
return Failed;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
Indeterminate => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving module in lexical scope) indeterminate; \
|
2012-08-22 19:24:52 -05:00
|
|
|
bailing");
|
2012-08-01 19:30:05 -05:00
|
|
|
return Indeterminate;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
Failed => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving module in lexical scope) failed to \
|
2012-08-22 19:24:52 -05:00
|
|
|
resolve");
|
2012-08-01 19:30:05 -05:00
|
|
|
return Failed;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
/// Returns the nearest normal module parent of the given module.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn get_nearest_normal_module_parent(&mut self, module_: @mut Module)
|
2013-05-31 17:17:22 -05:00
|
|
|
-> Option<@mut Module> {
|
2012-12-23 16:41:37 -06:00
|
|
|
let mut module_ = module_;
|
|
|
|
loop {
|
|
|
|
match module_.parent_link {
|
|
|
|
NoParentLink => return None,
|
|
|
|
ModuleParentLink(new_module, _) |
|
|
|
|
BlockParentLink(new_module, _) => {
|
|
|
|
match new_module.kind {
|
|
|
|
NormalModuleKind => return Some(new_module),
|
|
|
|
ExternModuleKind |
|
|
|
|
TraitModuleKind |
|
2013-05-13 18:13:20 -05:00
|
|
|
ImplModuleKind |
|
2012-12-23 16:41:37 -06:00
|
|
|
AnonymousModuleKind => module_ = new_module,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
/// Returns the nearest normal module parent of the given module, or the
|
|
|
|
/// module itself if it is a normal module.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn get_nearest_normal_module_parent_or_self(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
module_: @mut Module)
|
|
|
|
-> @mut Module {
|
2012-12-23 16:41:37 -06:00
|
|
|
match module_.kind {
|
|
|
|
NormalModuleKind => return module_,
|
2013-05-13 18:13:20 -05:00
|
|
|
ExternModuleKind |
|
|
|
|
TraitModuleKind |
|
|
|
|
ImplModuleKind |
|
|
|
|
AnonymousModuleKind => {
|
2012-12-23 16:41:37 -06:00
|
|
|
match self.get_nearest_normal_module_parent(module_) {
|
|
|
|
None => module_,
|
|
|
|
Some(new_module) => new_module
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-26 17:56:13 -05:00
|
|
|
/// Resolves a "module prefix". A module prefix is one or both of (a) `self::`;
|
2013-05-31 17:17:22 -05:00
|
|
|
/// (b) some chain of `super::`.
|
2013-06-26 17:56:13 -05:00
|
|
|
/// grammar: (SELF MOD_SEP ) ? (SUPER MOD_SEP) *
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_module_prefix(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
module_: @mut Module,
|
2013-09-01 19:50:59 -05:00
|
|
|
module_path: &[Ident])
|
2013-05-31 17:17:22 -05:00
|
|
|
-> ResolveResult<ModulePrefixResult> {
|
2012-12-23 16:41:37 -06:00
|
|
|
// Start at the current module if we see `self` or `super`, or at the
|
|
|
|
// top of the crate otherwise.
|
|
|
|
let mut containing_module;
|
|
|
|
let mut i;
|
2013-06-12 12:02:55 -05:00
|
|
|
if "self" == token::ident_to_str(&module_path[0]) {
|
2012-12-23 16:41:37 -06:00
|
|
|
containing_module =
|
|
|
|
self.get_nearest_normal_module_parent_or_self(module_);
|
|
|
|
i = 1;
|
2013-06-12 12:02:55 -05:00
|
|
|
} else if "super" == token::ident_to_str(&module_path[0]) {
|
2012-12-23 16:41:37 -06:00
|
|
|
containing_module =
|
|
|
|
self.get_nearest_normal_module_parent_or_self(module_);
|
|
|
|
i = 0; // We'll handle `super` below.
|
|
|
|
} else {
|
|
|
|
return Success(NoPrefixFound);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now loop through all the `super`s we find.
|
|
|
|
while i < module_path.len() &&
|
2013-06-12 12:02:55 -05:00
|
|
|
"super" == token::ident_to_str(&module_path[i]) {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving module prefix) resolving `super` at {}",
|
2012-12-23 16:41:37 -06:00
|
|
|
self.module_to_str(containing_module));
|
|
|
|
match self.get_nearest_normal_module_parent(containing_module) {
|
|
|
|
None => return Failed,
|
|
|
|
Some(new_module) => {
|
|
|
|
containing_module = new_module;
|
|
|
|
i += 1;
|
2012-12-13 15:05:22 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving module prefix) finished resolving prefix at {}",
|
2012-12-23 16:41:37 -06:00
|
|
|
self.module_to_str(containing_module));
|
|
|
|
|
|
|
|
return Success(PrefixFound(containing_module, i));
|
2012-12-13 15:05:22 -06:00
|
|
|
}
|
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
/// Attempts to resolve the supplied name in the given module for the
|
|
|
|
/// given namespace. If successful, returns the target corresponding to
|
|
|
|
/// the name.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_name_in_module(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
module_: @mut Module,
|
2013-09-01 19:50:59 -05:00
|
|
|
name: Ident,
|
2013-05-31 17:17:22 -05:00
|
|
|
namespace: Namespace,
|
|
|
|
name_search_type: NameSearchType)
|
|
|
|
-> ResolveResult<Target> {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving name in module) resolving `{}` in `{}`",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(name),
|
2012-08-22 19:24:52 -05:00
|
|
|
self.module_to_str(module_));
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// First, check the direct children of the module.
|
2013-08-21 20:39:30 -05:00
|
|
|
self.populate_module_if_necessary(module_);
|
2013-06-26 17:56:13 -05:00
|
|
|
match module_.children.find(&name.name) {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(name_bindings)
|
2013-03-21 02:26:38 -05:00
|
|
|
if name_bindings.defined_in_namespace(namespace) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving name in module) found node as child");
|
2013-08-31 11:13:04 -05:00
|
|
|
return Success(Target::new(module_, *name_bindings));
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(_) | None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Continue.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
// Next, check the module's imports if necessary.
|
|
|
|
|
|
|
|
// If this is a search of all imports, we should be done with glob
|
|
|
|
// resolution at this point.
|
2013-05-13 18:13:20 -05:00
|
|
|
if name_search_type == PathPublicOrPrivateSearch ||
|
|
|
|
name_search_type == PathPublicOnlySearch {
|
2013-05-16 17:37:52 -05:00
|
|
|
assert_eq!(module_.glob_count, 0);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
// Check the list of resolved imports.
|
2013-06-26 17:56:13 -05:00
|
|
|
match module_.import_resolutions.find(&name.name) {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(import_resolution) => {
|
2013-03-26 21:53:33 -05:00
|
|
|
if import_resolution.privacy == Public &&
|
|
|
|
import_resolution.outstanding_references != 0 {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving name in module) import \
|
2013-03-01 12:44:43 -06:00
|
|
|
unresolved; bailing out");
|
2012-08-01 19:30:05 -05:00
|
|
|
return Indeterminate;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
match import_resolution.target_for_namespace(namespace) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving name in module) name found, \
|
|
|
|
but not in namespace {:?}",
|
2012-08-22 19:24:52 -05:00
|
|
|
namespace);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-03-01 12:44:43 -06:00
|
|
|
Some(target)
|
|
|
|
if name_search_type ==
|
2013-05-13 18:13:20 -05:00
|
|
|
PathPublicOrPrivateSearch ||
|
2013-03-01 12:44:43 -06:00
|
|
|
import_resolution.privacy == Public => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving name in module) resolved to \
|
2012-08-22 19:24:52 -05:00
|
|
|
import");
|
2013-06-09 23:39:15 -05:00
|
|
|
self.used_imports.insert(import_resolution.id(namespace));
|
2013-06-27 19:41:35 -05:00
|
|
|
return Success(target);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-03-01 12:44:43 -06:00
|
|
|
Some(_) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving name in module) name found, \
|
2013-03-01 12:44:43 -06:00
|
|
|
but not public");
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
2013-03-26 21:53:33 -05:00
|
|
|
None => {} // Continue.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, search through external children.
|
|
|
|
if namespace == TypeNS {
|
2013-06-26 17:56:13 -05:00
|
|
|
match module_.external_module_children.find(&name.name) {
|
2013-03-26 21:53:33 -05:00
|
|
|
None => {}
|
|
|
|
Some(module) => {
|
|
|
|
let name_bindings =
|
|
|
|
@mut Resolver::create_name_bindings_from_module(
|
|
|
|
*module);
|
2013-08-31 11:13:04 -05:00
|
|
|
return Success(Target::new(module_, name_bindings));
|
2013-03-26 21:53:33 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We're out of luck.
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving name in module) failed to resolve `{}`",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(name));
|
2012-08-01 19:30:05 -05:00
|
|
|
return Failed;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn report_unresolved_imports(&mut self, module_: @mut Module) {
|
2012-07-31 18:38:41 -05:00
|
|
|
let index = module_.resolved_import_count;
|
2013-03-16 13:11:31 -05:00
|
|
|
let imports: &mut ~[@ImportDirective] = &mut *module_.imports;
|
|
|
|
let import_count = imports.len();
|
2012-05-22 12:54:12 -05:00
|
|
|
if index != import_count {
|
2013-08-03 21:14:01 -05:00
|
|
|
let sn = self.session.codemap.span_to_snippet(imports[index].span).unwrap();
|
2013-06-10 02:32:36 -05:00
|
|
|
if sn.contains("::") {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(imports[index].span, "unresolved import");
|
2013-04-26 03:59:28 -05:00
|
|
|
} else {
|
2013-09-28 00:38:08 -05:00
|
|
|
let err = format!("unresolved import (maybe you meant `{}::*`?)",
|
2013-05-31 09:39:02 -05:00
|
|
|
sn.slice(0, sn.len()));
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(imports[index].span, err);
|
2013-04-26 03:59:28 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Descend into children and anonymous children.
|
2013-08-21 20:39:30 -05:00
|
|
|
self.populate_module_if_necessary(module_);
|
2013-08-03 11:45:23 -05:00
|
|
|
for (_, &child_node) in module_.children.iter() {
|
2012-09-19 18:55:01 -05:00
|
|
|
match child_node.get_module_if_available() {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Continue.
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(child_module) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
self.report_unresolved_imports(child_module);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for (_, &module_) in module_.anonymous_children.iter() {
|
2012-07-31 18:38:41 -05:00
|
|
|
self.report_unresolved_imports(module_);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Export recording
|
|
|
|
//
|
|
|
|
// This pass simply determines what all "export" keywords refer to and
|
|
|
|
// writes the results into the export map.
|
|
|
|
//
|
2013-02-14 20:37:25 -06:00
|
|
|
// FIXME #4953 This pass will be removed once exports change to per-item.
|
|
|
|
// Then this operation can simply be performed as part of item (or import)
|
2012-05-22 12:54:12 -05:00
|
|
|
// processing.
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn record_exports(&mut self) {
|
2013-02-04 16:02:01 -06:00
|
|
|
let root_module = self.graph_root.get_module();
|
2012-05-22 12:54:12 -05:00
|
|
|
self.record_exports_for_module_subtree(root_module);
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn record_exports_for_module_subtree(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
module_: @mut Module) {
|
2012-05-22 12:54:12 -05:00
|
|
|
// If this isn't a local crate, then bail out. We don't need to record
|
2012-11-13 17:43:54 -06:00
|
|
|
// exports for nonlocal crates.
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match module_.def_id {
|
2013-07-27 03:25:59 -05:00
|
|
|
Some(def_id) if def_id.crate == LOCAL_CRATE => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// OK. Continue.
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(recording exports for module subtree) recording \
|
|
|
|
exports for local module `{}`",
|
2013-06-18 11:39:16 -05:00
|
|
|
self.module_to_str(module_));
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Record exports for the root module.
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(recording exports for module subtree) recording \
|
|
|
|
exports for root module `{}`",
|
2013-06-18 11:39:16 -05:00
|
|
|
self.module_to_str(module_));
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(_) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Bail out.
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(recording exports for module subtree) not recording \
|
|
|
|
exports for `{}`",
|
2012-08-22 19:24:52 -05:00
|
|
|
self.module_to_str(module_));
|
2012-08-01 19:30:05 -05:00
|
|
|
return;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-31 18:38:41 -05:00
|
|
|
self.record_exports_for_module(module_);
|
2013-08-21 20:39:30 -05:00
|
|
|
self.populate_module_if_necessary(module_);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for (_, &child_name_bindings) in module_.children.iter() {
|
2012-09-19 18:55:01 -05:00
|
|
|
match child_name_bindings.get_module_if_available() {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Nothing to do.
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(child_module) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
self.record_exports_for_module_subtree(child_module);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for (_, &child_module) in module_.anonymous_children.iter() {
|
2012-05-22 12:54:12 -05:00
|
|
|
self.record_exports_for_module_subtree(child_module);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn record_exports_for_module(&mut self, module_: @mut Module) {
|
2012-08-17 14:41:34 -05:00
|
|
|
let mut exports2 = ~[];
|
2012-09-24 19:29:20 -05:00
|
|
|
|
2013-01-30 19:20:02 -06:00
|
|
|
self.add_exports_for_module(&mut exports2, module_);
|
2013-06-27 19:41:35 -05:00
|
|
|
match module_.def_id {
|
2012-09-24 19:29:20 -05:00
|
|
|
Some(def_id) => {
|
2013-02-15 03:14:34 -06:00
|
|
|
self.export_map2.insert(def_id.node, exports2);
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(computing exports) writing exports for {} (some)",
|
2012-09-24 19:29:20 -05:00
|
|
|
def_id.node);
|
|
|
|
}
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn add_exports_of_namebindings(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
exports2: &mut ~[Export2],
|
2013-06-26 17:56:13 -05:00
|
|
|
name: Name,
|
2013-05-31 17:17:22 -05:00
|
|
|
namebindings: @mut NameBindings,
|
|
|
|
ns: Namespace,
|
|
|
|
reexport: bool) {
|
2012-11-15 18:59:43 -06:00
|
|
|
match (namebindings.def_for_namespace(ns),
|
|
|
|
namebindings.privacy_for_namespace(ns)) {
|
|
|
|
(Some(d), Some(Public)) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(computing exports) YES: {} '{}' => {:?}",
|
2012-11-15 18:59:43 -06:00
|
|
|
if reexport { ~"reexport" } else { ~"export"},
|
2013-06-26 17:56:13 -05:00
|
|
|
interner_get(name),
|
2012-11-15 18:59:43 -06:00
|
|
|
def_id_of_def(d));
|
|
|
|
exports2.push(Export2 {
|
|
|
|
reexport: reexport,
|
2013-06-26 17:56:13 -05:00
|
|
|
name: interner_get(name),
|
2012-11-15 18:59:43 -06:00
|
|
|
def_id: def_id_of_def(d)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
(Some(_), Some(privacy)) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(computing reexports) NO: privacy {:?}", privacy);
|
2012-11-15 18:59:43 -06:00
|
|
|
}
|
|
|
|
(d_opt, p_opt) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(computing reexports) NO: {:?}, {:?}", d_opt, p_opt);
|
2012-09-24 19:29:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn add_exports_for_module(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
exports2: &mut ~[Export2],
|
|
|
|
module_: @mut Module) {
|
2013-06-26 17:56:13 -05:00
|
|
|
for (name, importresolution) in module_.import_resolutions.iter() {
|
2012-11-13 17:43:54 -06:00
|
|
|
if importresolution.privacy != Public {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(computing exports) not reexporting private `{}`",
|
2013-06-26 17:56:13 -05:00
|
|
|
interner_get(*name));
|
2012-11-13 17:43:54 -06:00
|
|
|
loop;
|
|
|
|
}
|
2013-06-21 07:29:53 -05:00
|
|
|
let xs = [TypeNS, ValueNS];
|
2013-08-03 11:45:23 -05:00
|
|
|
for ns in xs.iter() {
|
2012-09-24 19:29:20 -05:00
|
|
|
match importresolution.target_for_namespace(*ns) {
|
|
|
|
Some(target) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(computing exports) maybe reexport '{}'",
|
2013-06-26 17:56:13 -05:00
|
|
|
interner_get(*name));
|
2013-01-11 23:01:42 -06:00
|
|
|
self.add_exports_of_namebindings(&mut *exports2,
|
2013-06-26 17:56:13 -05:00
|
|
|
*name,
|
2012-09-24 19:29:20 -05:00
|
|
|
target.bindings,
|
2012-11-15 18:59:43 -06:00
|
|
|
*ns,
|
2012-09-24 19:29:20 -05:00
|
|
|
true)
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
// AST resolution
|
|
|
|
//
|
2012-07-06 21:06:58 -05:00
|
|
|
// We maintain a list of value ribs and type ribs.
|
2012-05-22 12:54:12 -05:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn with_scope(&mut self, name: Option<Ident>, f: &fn(&mut Resolver)) {
|
2012-05-22 12:54:12 -05:00
|
|
|
let orig_module = self.current_module;
|
|
|
|
|
|
|
|
// Move down in the graph.
|
2012-08-06 14:34:08 -05:00
|
|
|
match name {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-07-11 17:00:40 -05:00
|
|
|
// Nothing to do.
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(name) => {
|
2013-08-21 20:39:30 -05:00
|
|
|
self.populate_module_if_necessary(orig_module);
|
2013-06-26 17:56:13 -05:00
|
|
|
match orig_module.children.find(&name.name) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("!!! (with scope) didn't find `{}` in `{}`",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(name),
|
2012-08-22 19:24:52 -05:00
|
|
|
self.module_to_str(orig_module));
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(name_bindings) => {
|
2012-08-06 14:34:08 -05:00
|
|
|
match (*name_bindings).get_module_if_available() {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("!!! (with scope) didn't find module \
|
|
|
|
for `{}` in `{}`",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(name),
|
2012-08-22 19:24:52 -05:00
|
|
|
self.module_to_str(orig_module));
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(module_) => {
|
2012-07-31 18:38:41 -05:00
|
|
|
self.current_module = module_;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
f(self);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
self.current_module = orig_module;
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
/// Wraps the given definition in the appropriate number of `def_upvar`
|
|
|
|
/// wrappers.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn upvarify(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
ribs: &mut ~[@Rib],
|
|
|
|
rib_index: uint,
|
2013-08-31 11:13:04 -05:00
|
|
|
def_like: DefLike,
|
|
|
|
span: Span,
|
2013-05-31 17:17:22 -05:00
|
|
|
allow_capturing_self: AllowCapturingSelfFlag)
|
2013-08-31 11:13:04 -05:00
|
|
|
-> Option<DefLike> {
|
2012-05-22 12:54:12 -05:00
|
|
|
let mut def;
|
2013-04-12 00:15:30 -05:00
|
|
|
let is_ty_param;
|
2012-07-06 21:06:58 -05:00
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match def_like {
|
2013-09-01 20:45:37 -05:00
|
|
|
DlDef(d @ DefLocal(*)) | DlDef(d @ DefUpvar(*)) |
|
|
|
|
DlDef(d @ DefArg(*)) | DlDef(d @ DefBinding(*)) => {
|
2012-07-06 21:06:58 -05:00
|
|
|
def = d;
|
|
|
|
is_ty_param = false;
|
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
DlDef(d @ DefTyParam(*)) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
def = d;
|
2012-07-06 21:06:58 -05:00
|
|
|
is_ty_param = true;
|
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
DlDef(d @ DefSelf(*))
|
2012-08-03 21:59:04 -05:00
|
|
|
if allow_capturing_self == DontAllowCapturingSelf => {
|
2012-07-06 21:06:58 -05:00
|
|
|
def = d;
|
|
|
|
is_ty_param = false;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => {
|
2012-08-20 14:23:37 -05:00
|
|
|
return Some(def_like);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-29 14:08:40 -06:00
|
|
|
let mut rib_index = rib_index + 1;
|
2013-03-07 17:37:14 -06:00
|
|
|
while rib_index < ribs.len() {
|
|
|
|
match ribs[rib_index].kind {
|
2012-08-03 21:59:04 -05:00
|
|
|
NormalRibKind => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Nothing to do. Continue.
|
|
|
|
}
|
2012-08-20 18:53:33 -05:00
|
|
|
FunctionRibKind(function_id, body_id) => {
|
2012-07-06 21:06:58 -05:00
|
|
|
if !is_ty_param {
|
2013-09-01 20:45:37 -05:00
|
|
|
def = DefUpvar(def_id_of_def(def).node,
|
2012-07-06 21:06:58 -05:00
|
|
|
@def,
|
2012-08-20 18:53:33 -05:00
|
|
|
function_id,
|
|
|
|
body_id);
|
2012-07-06 21:06:58 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-26 14:12:05 -05:00
|
|
|
MethodRibKind(item_id, _) => {
|
2012-07-26 16:04:03 -05:00
|
|
|
// If the def is a ty param, and came from the parent
|
|
|
|
// item, it's ok
|
2012-08-06 14:34:08 -05:00
|
|
|
match def {
|
2013-09-01 20:45:37 -05:00
|
|
|
DefTyParam(did, _)
|
2013-08-04 16:59:36 -05:00
|
|
|
if self.def_map.find(&did.node).map_move(|x| *x)
|
2013-09-01 20:45:37 -05:00
|
|
|
== Some(DefTyParamBinder(item_id)) => {
|
2012-07-26 16:04:03 -05:00
|
|
|
// ok
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => {
|
2012-07-26 16:04:03 -05:00
|
|
|
if !is_ty_param {
|
|
|
|
// This was an attempt to access an upvar inside a
|
|
|
|
// named function item. This is not allowed, so we
|
|
|
|
// report an error.
|
|
|
|
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(
|
2012-07-26 16:04:03 -05:00
|
|
|
span,
|
2013-07-01 12:47:43 -05:00
|
|
|
"can't capture dynamic environment in a fn item; \
|
|
|
|
use the || { ... } closure form instead");
|
2012-07-26 16:04:03 -05:00
|
|
|
} else {
|
|
|
|
// This was an attempt to use a type parameter outside
|
|
|
|
// its scope.
|
|
|
|
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(span,
|
2013-05-19 00:07:44 -05:00
|
|
|
"attempt to use a type \
|
|
|
|
argument out of scope");
|
2012-07-26 16:04:03 -05:00
|
|
|
}
|
|
|
|
|
2012-08-20 14:23:37 -05:00
|
|
|
return None;
|
2012-07-26 16:04:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
OpaqueFunctionRibKind => {
|
2012-07-06 21:06:58 -05:00
|
|
|
if !is_ty_param {
|
|
|
|
// This was an attempt to access an upvar inside a
|
|
|
|
// named function item. This is not allowed, so we
|
|
|
|
// report an error.
|
|
|
|
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(
|
2012-07-14 00:57:48 -05:00
|
|
|
span,
|
2013-07-01 12:47:43 -05:00
|
|
|
"can't capture dynamic environment in a fn item; \
|
|
|
|
use the || { ... } closure form instead");
|
2012-07-06 21:06:58 -05:00
|
|
|
} else {
|
|
|
|
// This was an attempt to use a type parameter outside
|
|
|
|
// its scope.
|
|
|
|
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(span,
|
2013-05-19 00:07:44 -05:00
|
|
|
"attempt to use a type \
|
|
|
|
argument out of scope");
|
2012-07-06 21:06:58 -05:00
|
|
|
}
|
|
|
|
|
2012-08-20 14:23:37 -05:00
|
|
|
return None;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-10-15 14:27:09 -05:00
|
|
|
ConstantItemRibKind => {
|
|
|
|
// Still doesn't deal with upvars
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(span,
|
2013-05-19 00:07:44 -05:00
|
|
|
"attempt to use a non-constant \
|
|
|
|
value in a constant");
|
2012-10-15 14:27:09 -05:00
|
|
|
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-10-15 14:27:09 -05:00
|
|
|
rib_index += 1;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-08-31 11:13:04 -05:00
|
|
|
return Some(DlDef(def));
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn search_ribs(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
ribs: &mut ~[@Rib],
|
2013-06-26 17:56:13 -05:00
|
|
|
name: Name,
|
2013-08-31 11:13:04 -05:00
|
|
|
span: Span,
|
2013-05-31 17:17:22 -05:00
|
|
|
allow_capturing_self: AllowCapturingSelfFlag)
|
2013-08-31 11:13:04 -05:00
|
|
|
-> Option<DefLike> {
|
2013-02-14 20:37:25 -06:00
|
|
|
// FIXME #4950: This should not use a while loop.
|
|
|
|
// FIXME #4950: Try caching?
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-03-07 17:37:14 -06:00
|
|
|
let mut i = ribs.len();
|
2012-10-15 14:27:09 -05:00
|
|
|
while i != 0 {
|
|
|
|
i -= 1;
|
2013-06-26 17:56:13 -05:00
|
|
|
match ribs[i].bindings.find(&name) {
|
2013-03-22 21:26:41 -05:00
|
|
|
Some(&def_like) => {
|
2012-08-01 19:30:05 -05:00
|
|
|
return self.upvarify(ribs, i, def_like, span,
|
2013-03-07 17:37:14 -06:00
|
|
|
allow_capturing_self);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Continue.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-20 14:23:37 -05:00
|
|
|
return None;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-27 21:46:09 -05:00
|
|
|
pub fn resolve_crate(&mut self, crate: &ast::Crate) {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving crate) starting");
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-27 21:46:09 -05:00
|
|
|
visit::walk_crate(self, crate, ());
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_item(&mut self, item: @item) {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving item) resolving {}",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(item.ident));
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-07-03 17:55:26 -05:00
|
|
|
// Items with the !resolve_unexported attribute are X-ray contexts.
|
|
|
|
// This is used to allow the test runner to run unexported tests.
|
|
|
|
let orig_xray_flag = self.xray_context;
|
2013-07-19 06:51:37 -05:00
|
|
|
if attr::contains_name(item.attrs, "!resolve_unexported") {
|
2012-07-03 17:55:26 -05:00
|
|
|
self.xray_context = Xray;
|
|
|
|
}
|
|
|
|
|
2013-03-20 00:17:42 -05:00
|
|
|
match item.node {
|
2012-10-15 14:27:09 -05:00
|
|
|
|
|
|
|
// enum item: resolve all the variants' discrs,
|
|
|
|
// then resolve the ty params
|
2013-02-14 23:50:03 -06:00
|
|
|
item_enum(ref enum_def, ref generics) => {
|
2013-08-03 11:45:23 -05:00
|
|
|
for variant in (*enum_def).variants.iter() {
|
|
|
|
for dis_expr in variant.node.disr_expr.iter() {
|
2012-10-15 14:27:09 -05:00
|
|
|
// resolve the discriminator expr
|
|
|
|
// as a constant
|
2013-09-26 21:10:16 -05:00
|
|
|
self.with_constant_rib(|this| {
|
|
|
|
this.resolve_expr(*dis_expr);
|
2012-10-15 14:27:09 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// n.b. the discr expr gets visted twice.
|
|
|
|
// but maybe it's okay since the first time will signal an
|
|
|
|
// error if there is one? -- tjc
|
2013-01-07 16:16:52 -06:00
|
|
|
do self.with_type_parameter_rib(
|
|
|
|
HasTypeParameters(
|
2013-09-26 21:10:16 -05:00
|
|
|
generics, item.id, 0, NormalRibKind)) |this| {
|
|
|
|
visit::walk_item(this, item, ());
|
2012-10-15 14:27:09 -05:00
|
|
|
}
|
|
|
|
}
|
2012-10-15 15:14:23 -05:00
|
|
|
|
2013-02-14 23:50:03 -06:00
|
|
|
item_ty(_, ref generics) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
do self.with_type_parameter_rib
|
2013-02-14 23:50:03 -06:00
|
|
|
(HasTypeParameters(generics, item.id, 0,
|
2012-07-06 21:06:58 -05:00
|
|
|
NormalRibKind))
|
2013-09-26 21:10:16 -05:00
|
|
|
|this| {
|
|
|
|
visit::walk_item(this, item, ());
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 23:50:03 -06:00
|
|
|
item_impl(ref generics,
|
2013-07-05 19:47:42 -05:00
|
|
|
ref implemented_traits,
|
2013-07-05 23:57:11 -05:00
|
|
|
ref self_type,
|
2013-02-14 23:50:03 -06:00
|
|
|
ref methods) => {
|
2012-10-22 19:57:10 -05:00
|
|
|
self.resolve_implementation(item.id,
|
2013-02-14 23:50:03 -06:00
|
|
|
generics,
|
2012-07-18 18:28:31 -05:00
|
|
|
implemented_traits,
|
2012-10-22 19:57:10 -05:00
|
|
|
self_type,
|
2013-09-26 21:10:16 -05:00
|
|
|
*methods);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-02-14 23:50:03 -06:00
|
|
|
item_trait(ref generics, ref traits, ref methods) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Create a new rib for the self type.
|
2013-08-31 11:13:04 -05:00
|
|
|
let self_type_rib = @Rib::new(NormalRibKind);
|
2013-03-07 17:37:14 -06:00
|
|
|
self.type_ribs.push(self_type_rib);
|
2013-06-26 17:56:13 -05:00
|
|
|
// plain insert (no renaming)
|
|
|
|
let name = self.type_self_ident.name;
|
|
|
|
self_type_rib.bindings.insert(name,
|
2013-09-01 20:45:37 -05:00
|
|
|
DlDef(DefSelfTy(item.id)));
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-07-31 12:27:51 -05:00
|
|
|
// Create a new rib for the trait-wide type parameters.
|
2012-05-22 12:54:12 -05:00
|
|
|
do self.with_type_parameter_rib
|
2013-02-14 23:50:03 -06:00
|
|
|
(HasTypeParameters(generics, item.id, 0,
|
2013-09-26 21:10:16 -05:00
|
|
|
NormalRibKind)) |this| {
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_type_parameters(&generics.ty_params);
|
2012-07-12 20:04:40 -05:00
|
|
|
|
2012-08-03 17:02:01 -05:00
|
|
|
// Resolve derived traits.
|
2013-08-03 11:45:23 -05:00
|
|
|
for trt in traits.iter() {
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_trait_reference(item.id, trt, TraitDerivation);
|
2012-08-03 17:02:01 -05:00
|
|
|
}
|
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for method in (*methods).iter() {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Create a new rib for the method-specific type
|
|
|
|
// parameters.
|
|
|
|
//
|
2013-02-14 20:37:25 -06:00
|
|
|
// FIXME #4951: Do we need a node ID here?
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-09-19 18:55:01 -05:00
|
|
|
match *method {
|
2012-12-04 12:50:00 -06:00
|
|
|
required(ref ty_m) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
do this.with_type_parameter_rib
|
2013-02-14 23:50:03 -06:00
|
|
|
(HasTypeParameters(&ty_m.generics,
|
2012-05-22 12:54:12 -05:00
|
|
|
item.id,
|
2013-02-14 23:50:03 -06:00
|
|
|
generics.ty_params.len(),
|
2013-09-26 21:10:16 -05:00
|
|
|
MethodRibKind(item.id, Required))) |this| {
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-07-10 15:44:20 -05:00
|
|
|
// Resolve the method-specific type
|
|
|
|
// parameters.
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_type_parameters(
|
|
|
|
&ty_m.generics.ty_params);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for argument in ty_m.decl.inputs.iter() {
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_type(&argument.ty);
|
2012-07-10 15:44:20 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_type(&ty_m.decl.output);
|
2012-07-10 15:44:20 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
provided(m) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_method(MethodRibKind(item.id,
|
2012-07-26 16:04:03 -05:00
|
|
|
Provided(m.id)),
|
2012-07-10 15:44:20 -05:00
|
|
|
m,
|
2013-09-26 21:10:16 -05:00
|
|
|
generics.ty_params.len())
|
2012-07-10 15:44:20 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-07 17:37:14 -06:00
|
|
|
self.type_ribs.pop();
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-03-20 00:17:42 -05:00
|
|
|
item_struct(ref struct_def, ref generics) => {
|
2012-12-10 15:47:54 -06:00
|
|
|
self.resolve_struct(item.id,
|
2013-02-14 23:50:03 -06:00
|
|
|
generics,
|
2013-09-26 21:10:16 -05:00
|
|
|
struct_def.fields);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-02-18 23:25:44 -06:00
|
|
|
item_mod(ref module_) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
do self.with_scope(Some(item.ident)) |this| {
|
|
|
|
this.resolve_module(module_, item.span, item.ident,
|
|
|
|
item.id);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-20 00:17:42 -05:00
|
|
|
item_foreign_mod(ref foreign_module) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
do self.with_scope(Some(item.ident)) |this| {
|
2013-08-03 11:45:23 -05:00
|
|
|
for foreign_item in foreign_module.items.iter() {
|
2013-02-14 23:50:03 -06:00
|
|
|
match foreign_item.node {
|
2013-08-02 16:30:00 -05:00
|
|
|
foreign_item_fn(_, ref generics) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
this.with_type_parameter_rib(
|
2013-02-14 23:50:03 -06:00
|
|
|
HasTypeParameters(
|
|
|
|
generics, foreign_item.id, 0,
|
|
|
|
NormalRibKind),
|
2013-09-26 21:10:16 -05:00
|
|
|
|this| visit::walk_foreign_item(this,
|
2013-08-13 11:52:41 -05:00
|
|
|
*foreign_item,
|
|
|
|
()));
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-06-22 00:46:27 -05:00
|
|
|
foreign_item_static(*) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
visit::walk_foreign_item(this,
|
2013-08-13 11:52:41 -05:00
|
|
|
*foreign_item,
|
|
|
|
());
|
2012-08-25 17:09:33 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-13 21:25:28 -05:00
|
|
|
item_fn(ref fn_decl, _, _, ref generics, ref block) => {
|
2012-07-06 21:06:58 -05:00
|
|
|
self.resolve_function(OpaqueFunctionRibKind,
|
2013-03-20 00:17:42 -05:00
|
|
|
Some(fn_decl),
|
2012-07-06 21:06:58 -05:00
|
|
|
HasTypeParameters
|
2013-02-14 23:50:03 -06:00
|
|
|
(generics,
|
2012-07-06 21:06:58 -05:00
|
|
|
item.id,
|
2012-11-29 14:08:40 -06:00
|
|
|
0,
|
2012-07-06 21:06:58 -05:00
|
|
|
OpaqueFunctionRibKind),
|
2013-02-18 00:20:36 -06:00
|
|
|
block,
|
2013-09-26 21:10:16 -05:00
|
|
|
NoSelfBinding);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-06-21 20:46:34 -05:00
|
|
|
item_static(*) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.with_constant_rib(|this| {
|
|
|
|
visit::walk_item(this, item, ());
|
2012-10-15 14:27:09 -05:00
|
|
|
});
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-07-05 14:10:33 -05:00
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
item_mac(*) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
fail2!("item macros unimplemented")
|
2012-07-05 14:10:33 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-07-03 17:55:26 -05:00
|
|
|
|
|
|
|
self.xray_context = orig_xray_flag;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn with_type_parameter_rib(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
type_parameters: TypeParameters,
|
2013-09-26 21:10:16 -05:00
|
|
|
f: &fn(&mut Resolver)) {
|
2012-08-06 14:34:08 -05:00
|
|
|
match type_parameters {
|
2013-02-14 23:50:03 -06:00
|
|
|
HasTypeParameters(generics, node_id, initial_index,
|
2012-08-03 21:59:04 -05:00
|
|
|
rib_kind) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-08-31 11:13:04 -05:00
|
|
|
let function_type_rib = @Rib::new(rib_kind);
|
2013-02-14 23:50:03 -06:00
|
|
|
self.type_ribs.push(function_type_rib);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for (index, type_parameter) in generics.ty_params.iter().enumerate() {
|
2013-06-05 21:49:41 -05:00
|
|
|
let ident = type_parameter.ident;
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("with_type_parameter_rib: {} {}", node_id,
|
2012-08-22 19:24:52 -05:00
|
|
|
type_parameter.id);
|
2013-09-01 20:45:37 -05:00
|
|
|
let def_like = DlDef(DefTyParam
|
2012-05-22 12:54:12 -05:00
|
|
|
(local_def(type_parameter.id),
|
|
|
|
index + initial_index));
|
2012-07-26 16:04:03 -05:00
|
|
|
// Associate this type parameter with
|
|
|
|
// the item that bound it
|
|
|
|
self.record_def(type_parameter.id,
|
2013-09-01 20:45:37 -05:00
|
|
|
DefTyParamBinder(node_id));
|
2013-06-26 17:56:13 -05:00
|
|
|
// plain insert (no renaming)
|
2013-06-05 21:49:41 -05:00
|
|
|
function_type_rib.bindings.insert(ident.name, def_like);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
NoTypeParameters => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Nothing to do.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
f(self);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match type_parameters {
|
2012-08-26 14:12:05 -05:00
|
|
|
HasTypeParameters(*) => {
|
2013-02-14 23:50:03 -06:00
|
|
|
self.type_ribs.pop();
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-08-14 21:20:56 -05:00
|
|
|
NoTypeParameters => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Nothing to do.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn with_label_rib(&mut self, f: &fn(&mut Resolver)) {
|
2013-08-31 11:13:04 -05:00
|
|
|
self.label_ribs.push(@Rib::new(NormalRibKind));
|
2013-09-26 21:10:16 -05:00
|
|
|
f(self);
|
2013-03-07 17:37:14 -06:00
|
|
|
self.label_ribs.pop();
|
2012-08-14 21:20:56 -05:00
|
|
|
}
|
2013-02-21 13:08:50 -06:00
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn with_constant_rib(&mut self, f: &fn(&mut Resolver)) {
|
2013-08-31 11:13:04 -05:00
|
|
|
self.value_ribs.push(@Rib::new(ConstantItemRibKind));
|
2013-09-26 21:10:16 -05:00
|
|
|
f(self);
|
2013-03-07 17:37:14 -06:00
|
|
|
self.value_ribs.pop();
|
2012-10-15 14:27:09 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_function(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
rib_kind: RibKind,
|
|
|
|
optional_declaration: Option<&fn_decl>,
|
|
|
|
type_parameters: TypeParameters,
|
2013-07-19 00:38:55 -05:00
|
|
|
block: &Block,
|
2013-09-26 21:10:16 -05:00
|
|
|
self_binding: SelfBinding) {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Create a value rib for the function.
|
2013-08-31 11:13:04 -05:00
|
|
|
let function_value_rib = @Rib::new(rib_kind);
|
2013-03-07 17:37:14 -06:00
|
|
|
self.value_ribs.push(function_value_rib);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-08-14 21:20:56 -05:00
|
|
|
// Create a label rib for the function.
|
2013-08-31 11:13:04 -05:00
|
|
|
let function_label_rib = @Rib::new(rib_kind);
|
2013-03-07 17:37:14 -06:00
|
|
|
self.label_ribs.push(function_label_rib);
|
2012-08-14 21:20:56 -05:00
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
// If this function has type parameters, add them now.
|
2013-09-26 21:10:16 -05:00
|
|
|
do self.with_type_parameter_rib(type_parameters) |this| {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Resolve the type parameters.
|
2012-08-06 14:34:08 -05:00
|
|
|
match type_parameters {
|
2012-08-03 21:59:04 -05:00
|
|
|
NoTypeParameters => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Continue.
|
|
|
|
}
|
2013-02-14 23:50:03 -06:00
|
|
|
HasTypeParameters(ref generics, _, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_type_parameters(&generics.ty_params);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add self to the rib, if necessary.
|
2012-08-06 14:34:08 -05:00
|
|
|
match self_binding {
|
2012-08-03 21:59:04 -05:00
|
|
|
NoSelfBinding => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Nothing to do.
|
|
|
|
}
|
2013-08-27 15:36:42 -05:00
|
|
|
HasSelfBinding(self_node_id) => {
|
2013-09-01 20:45:37 -05:00
|
|
|
let def_like = DlDef(DefSelf(self_node_id));
|
2013-05-10 17:15:06 -05:00
|
|
|
*function_value_rib.self_binding = Some(def_like);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add each argument to the rib.
|
2012-08-06 14:34:08 -05:00
|
|
|
match optional_declaration {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Nothing to do.
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(declaration) => {
|
2013-08-03 11:45:23 -05:00
|
|
|
for argument in declaration.inputs.iter() {
|
2013-04-24 03:29:46 -05:00
|
|
|
let binding_mode = ArgumentIrrefutableMode;
|
2013-01-03 22:20:56 -06:00
|
|
|
let mutability =
|
|
|
|
if argument.is_mutbl {Mutable} else {Immutable};
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_pattern(argument.pat,
|
2012-11-06 20:41:06 -06:00
|
|
|
binding_mode,
|
2013-01-03 22:20:56 -06:00
|
|
|
mutability,
|
2013-09-26 21:10:16 -05:00
|
|
|
None);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_type(&argument.ty);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving function) recorded argument");
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_type(&declaration.output);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resolve the function body.
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_block(block);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving function) leaving function");
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-03-07 17:37:14 -06:00
|
|
|
self.label_ribs.pop();
|
|
|
|
self.value_ribs.pop();
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_type_parameters(&mut self,
|
|
|
|
type_parameters: &OptVec<TyParam>) {
|
2013-08-03 11:45:23 -05:00
|
|
|
for type_parameter in type_parameters.iter() {
|
|
|
|
for bound in type_parameter.bounds.iter() {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_type_parameter_bound(type_parameter.id, bound);
|
2013-05-10 14:57:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_type_parameter_bound(&mut self,
|
2013-07-27 03:25:59 -05:00
|
|
|
id: NodeId,
|
2013-09-26 21:10:16 -05:00
|
|
|
type_parameter_bound: &TyParamBound) {
|
2013-05-10 14:57:27 -05:00
|
|
|
match *type_parameter_bound {
|
2013-07-05 19:47:42 -05:00
|
|
|
TraitTyParamBound(ref tref) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_trait_reference(id, tref, TraitBoundingTypeParameter)
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-05-10 14:57:27 -05:00
|
|
|
RegionTyParamBound => {}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_trait_reference(&mut self,
|
2013-07-27 03:25:59 -05:00
|
|
|
id: NodeId,
|
2013-05-31 17:17:22 -05:00
|
|
|
trait_reference: &trait_ref,
|
2013-07-03 16:16:08 -05:00
|
|
|
reference_type: TraitReferenceType) {
|
2013-09-26 21:10:16 -05:00
|
|
|
match self.resolve_path(id, &trait_reference.path, TypeNS, true) {
|
2013-03-27 05:16:28 -05:00
|
|
|
None => {
|
2013-08-07 11:47:28 -05:00
|
|
|
let path_str = self.path_idents_to_str(&trait_reference.path);
|
2013-07-03 16:16:08 -05:00
|
|
|
let usage_str = match reference_type {
|
2013-07-03 17:43:03 -05:00
|
|
|
TraitBoundingTypeParameter => "bound type parameter with",
|
2013-07-03 16:16:08 -05:00
|
|
|
TraitImplementation => "implement",
|
|
|
|
TraitDerivation => "derive"
|
|
|
|
};
|
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
let msg = format!("attempt to {} a nonexistent trait `{}`", usage_str, path_str);
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(trait_reference.path.span, msg);
|
2013-03-27 05:16:28 -05:00
|
|
|
}
|
|
|
|
Some(def) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving trait) found trait def: {:?}", def);
|
2013-03-27 05:16:28 -05:00
|
|
|
self.record_def(trait_reference.ref_id, def);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_struct(&mut self,
|
2013-07-27 03:25:59 -05:00
|
|
|
id: NodeId,
|
2013-05-31 17:17:22 -05:00
|
|
|
generics: &Generics,
|
2013-09-26 21:10:16 -05:00
|
|
|
fields: &[@struct_field]) {
|
2013-09-01 19:50:59 -05:00
|
|
|
let mut ident_map: HashMap<ast::Ident,@struct_field> = HashMap::new();
|
2013-08-03 11:45:23 -05:00
|
|
|
for &field in fields.iter() {
|
2013-06-27 19:27:56 -05:00
|
|
|
match field.node.kind {
|
|
|
|
named_field(ident, _) => {
|
|
|
|
match ident_map.find(&ident) {
|
|
|
|
Some(&prev_field) => {
|
|
|
|
let ident_str = self.session.str_of(ident);
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(field.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("field `{}` is already declared", ident_str));
|
2013-06-27 19:27:56 -05:00
|
|
|
self.session.span_note(prev_field.span,
|
|
|
|
"Previously declared here");
|
|
|
|
},
|
|
|
|
None => {
|
|
|
|
ident_map.insert(ident, field);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
// If applicable, create a rib for the type parameters.
|
|
|
|
do self.with_type_parameter_rib(HasTypeParameters
|
2013-02-14 23:50:03 -06:00
|
|
|
(generics, id, 0,
|
2013-09-26 21:10:16 -05:00
|
|
|
OpaqueFunctionRibKind)) |this| {
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// Resolve the type parameters.
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_type_parameters(&generics.ty_params);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-08-15 17:53:58 -05:00
|
|
|
// Resolve fields.
|
2013-08-03 11:45:23 -05:00
|
|
|
for field in fields.iter() {
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_type(&field.node.ty);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-10 15:44:20 -05:00
|
|
|
// Does this really need to take a RibKind or is it always going
|
|
|
|
// to be NormalRibKind?
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_method(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
rib_kind: RibKind,
|
|
|
|
method: @method,
|
2013-09-26 21:10:16 -05:00
|
|
|
outer_type_parameter_count: uint) {
|
2013-02-14 23:50:03 -06:00
|
|
|
let method_generics = &method.generics;
|
2012-07-10 15:44:20 -05:00
|
|
|
let type_parameters =
|
2013-02-14 23:50:03 -06:00
|
|
|
HasTypeParameters(method_generics,
|
2012-07-10 15:44:20 -05:00
|
|
|
method.id,
|
|
|
|
outer_type_parameter_count,
|
|
|
|
rib_kind);
|
2012-08-02 18:01:38 -05:00
|
|
|
// we only have self ty if it is a non static method
|
2013-04-30 10:49:48 -05:00
|
|
|
let self_binding = match method.explicit_self.node {
|
2012-08-02 18:01:38 -05:00
|
|
|
sty_static => { NoSelfBinding }
|
2013-08-27 15:36:42 -05:00
|
|
|
_ => { HasSelfBinding(method.self_id) }
|
2012-08-02 18:01:38 -05:00
|
|
|
};
|
|
|
|
|
2012-07-10 15:44:20 -05:00
|
|
|
self.resolve_function(rib_kind,
|
2013-03-20 00:17:42 -05:00
|
|
|
Some(&method.decl),
|
2012-07-10 15:44:20 -05:00
|
|
|
type_parameters,
|
2013-02-18 00:20:36 -06:00
|
|
|
&method.body,
|
2013-09-26 21:10:16 -05:00
|
|
|
self_binding);
|
2012-07-10 15:44:20 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_implementation(&mut self,
|
2013-07-27 03:25:59 -05:00
|
|
|
id: NodeId,
|
2013-05-31 17:17:22 -05:00
|
|
|
generics: &Generics,
|
2013-07-05 19:47:42 -05:00
|
|
|
opt_trait_reference: &Option<trait_ref>,
|
2013-07-05 23:57:11 -05:00
|
|
|
self_type: &Ty,
|
2013-09-26 21:10:16 -05:00
|
|
|
methods: &[@method]) {
|
2012-05-22 12:54:12 -05:00
|
|
|
// If applicable, create a rib for the type parameters.
|
2013-02-14 23:50:03 -06:00
|
|
|
let outer_type_parameter_count = generics.ty_params.len();
|
2012-05-22 12:54:12 -05:00
|
|
|
do self.with_type_parameter_rib(HasTypeParameters
|
2013-02-14 23:50:03 -06:00
|
|
|
(generics, id, 0,
|
2013-09-26 21:10:16 -05:00
|
|
|
NormalRibKind)) |this| {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Resolve the type parameters.
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_type_parameters(&generics.ty_params);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-07-31 12:27:51 -05:00
|
|
|
// Resolve the trait reference, if necessary.
|
2013-03-07 17:37:14 -06:00
|
|
|
let original_trait_refs;
|
2012-09-07 17:11:26 -05:00
|
|
|
match opt_trait_reference {
|
2013-07-05 19:47:42 -05:00
|
|
|
&Some(ref trait_reference) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_trait_reference(id, trait_reference,
|
2013-07-08 10:34:28 -05:00
|
|
|
TraitImplementation);
|
2012-07-11 17:00:40 -05:00
|
|
|
|
2012-10-15 20:04:15 -05:00
|
|
|
// Record the current set of trait references.
|
2013-03-27 05:16:28 -05:00
|
|
|
let mut new_trait_refs = ~[];
|
2013-06-10 16:50:12 -05:00
|
|
|
{
|
2013-09-26 21:10:16 -05:00
|
|
|
let r = this.def_map.find(&trait_reference.ref_id);
|
2013-08-03 11:45:23 -05:00
|
|
|
for &def in r.iter() {
|
2013-06-10 16:50:12 -05:00
|
|
|
new_trait_refs.push(def_id_of_def(*def));
|
|
|
|
}
|
2013-03-27 05:16:28 -05:00
|
|
|
}
|
|
|
|
original_trait_refs = Some(util::replace(
|
2013-09-26 21:10:16 -05:00
|
|
|
&mut this.current_trait_refs,
|
2013-03-27 05:16:28 -05:00
|
|
|
Some(new_trait_refs)));
|
2013-03-07 17:37:14 -06:00
|
|
|
}
|
2013-07-05 19:47:42 -05:00
|
|
|
&None => {
|
2013-03-07 17:37:14 -06:00
|
|
|
original_trait_refs = None;
|
2012-10-15 20:04:15 -05:00
|
|
|
}
|
2012-09-07 17:11:26 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// Resolve the self type.
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_type(self_type);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for method in methods.iter() {
|
2012-11-13 21:08:01 -06:00
|
|
|
// We also need a new scope for the method-specific
|
|
|
|
// type parameters.
|
2013-09-26 21:10:16 -05:00
|
|
|
this.resolve_method(MethodRibKind(
|
2012-11-13 21:08:01 -06:00
|
|
|
id,
|
|
|
|
Provided(method.id)),
|
|
|
|
*method,
|
2013-09-26 21:10:16 -05:00
|
|
|
outer_type_parameter_count);
|
2012-08-02 18:01:38 -05:00
|
|
|
/*
|
2012-10-22 19:57:10 -05:00
|
|
|
let borrowed_type_parameters = &method.tps;
|
|
|
|
self.resolve_function(MethodRibKind(
|
|
|
|
id,
|
|
|
|
Provided(method.id)),
|
|
|
|
Some(@method.decl),
|
|
|
|
HasTypeParameters
|
|
|
|
(borrowed_type_parameters,
|
|
|
|
method.id,
|
|
|
|
outer_type_parameter_count,
|
|
|
|
NormalRibKind),
|
|
|
|
method.body,
|
|
|
|
HasSelfBinding(method.self_id),
|
|
|
|
visitor);
|
2012-08-02 18:01:38 -05:00
|
|
|
*/
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-07-11 17:00:40 -05:00
|
|
|
|
2012-07-18 18:28:31 -05:00
|
|
|
// Restore the original trait references.
|
2013-03-07 17:37:14 -06:00
|
|
|
match original_trait_refs {
|
2013-09-26 21:10:16 -05:00
|
|
|
Some(r) => { this.current_trait_refs = r; }
|
2013-03-07 17:37:14 -06:00
|
|
|
None => ()
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_module(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
module_: &_mod,
|
2013-08-31 11:13:04 -05:00
|
|
|
_span: Span,
|
2013-09-01 19:50:59 -05:00
|
|
|
_name: Ident,
|
2013-09-26 21:10:16 -05:00
|
|
|
id: NodeId) {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Write the implementations in scope into the module metadata.
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving module) resolving module ID {}", id);
|
2013-09-26 21:10:16 -05:00
|
|
|
visit::walk_mod(self, module_, ());
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_local(&mut self, local: @Local) {
|
2013-07-19 00:38:55 -05:00
|
|
|
let mutability = if local.is_mutbl {Mutable} else {Immutable};
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// Resolve the type.
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_type(&local.ty);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// Resolve the initializer, if necessary.
|
2013-07-19 00:38:55 -05:00
|
|
|
match local.init {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Nothing to do.
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(initializer) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_expr(initializer);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resolve the pattern.
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_pattern(local.pat, LocalIrrefutableMode, mutability, None);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-05 16:15:00 -05:00
|
|
|
// 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.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn binding_mode_map(&mut self, pat: @Pat) -> BindingMap {
|
2013-04-03 08:28:36 -05:00
|
|
|
let mut result = HashMap::new();
|
2013-03-22 21:26:41 -05:00
|
|
|
do pat_bindings(self.def_map, pat) |binding_mode, _id, sp, path| {
|
2013-09-05 16:15:00 -05:00
|
|
|
let name = mtwt_resolve(path_to_ident(path));
|
2013-06-26 17:56:13 -05:00
|
|
|
result.insert(name,
|
2012-08-06 09:20:23 -05:00
|
|
|
binding_info {span: sp,
|
|
|
|
binding_mode: binding_mode});
|
|
|
|
}
|
|
|
|
return result;
|
2012-07-10 20:24:41 -05:00
|
|
|
}
|
|
|
|
|
2013-09-05 16:15:00 -05:00
|
|
|
// check that all of the arms in an or-pattern have exactly the
|
|
|
|
// same set of bindings, with the same binding modes for each.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn check_consistent_bindings(&mut self, arm: &Arm) {
|
2012-08-06 09:20:23 -05:00
|
|
|
if arm.pats.len() == 0 { return; }
|
|
|
|
let map_0 = self.binding_mode_map(arm.pats[0]);
|
2013-08-03 11:45:23 -05:00
|
|
|
for (i, p) in arm.pats.iter().enumerate() {
|
2012-09-21 20:43:30 -05:00
|
|
|
let map_i = self.binding_mode_map(*p);
|
2012-08-06 09:20:23 -05:00
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for (&key, &binding_0) in map_0.iter() {
|
2013-02-03 22:29:17 -06:00
|
|
|
match map_i.find(&key) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(
|
2012-08-06 09:20:23 -05:00
|
|
|
p.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("variable `{}` from pattern \\#1 is \
|
|
|
|
not bound in pattern \\#{}",
|
2013-06-26 17:56:13 -05:00
|
|
|
interner_get(key), i + 1));
|
2012-08-06 09:20:23 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(binding_i) => {
|
2012-08-06 09:20:23 -05:00
|
|
|
if binding_0.binding_mode != binding_i.binding_mode {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(
|
2012-08-06 09:20:23 -05:00
|
|
|
binding_i.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("variable `{}` is bound with different \
|
|
|
|
mode in pattern \\#{} than in pattern \\#1",
|
2013-06-26 17:56:13 -05:00
|
|
|
interner_get(key), i + 1));
|
2012-08-06 09:20:23 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
for (&key, &binding) in map_i.iter() {
|
2013-02-08 16:08:02 -06:00
|
|
|
if !map_0.contains_key(&key) {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(
|
2012-08-06 09:20:23 -05:00
|
|
|
binding.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("variable `{}` from pattern \\#{} is \
|
|
|
|
not bound in pattern \\#1",
|
2013-06-26 17:56:13 -05:00
|
|
|
interner_get(key), i + 1));
|
2012-08-06 09:20:23 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-07-10 20:24:41 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_arm(&mut self, arm: &Arm) {
|
2013-08-31 11:13:04 -05:00
|
|
|
self.value_ribs.push(@Rib::new(NormalRibKind));
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-04-03 08:28:36 -05:00
|
|
|
let bindings_list = @mut HashMap::new();
|
2013-08-03 11:45:23 -05:00
|
|
|
for pattern in arm.pats.iter() {
|
2012-09-19 18:55:01 -05:00
|
|
|
self.resolve_pattern(*pattern, RefutableMode, Immutable,
|
2013-09-26 21:10:16 -05:00
|
|
|
Some(bindings_list));
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-07-10 20:24:41 -05:00
|
|
|
// This has to happen *after* we determine which
|
|
|
|
// pat_idents are variants
|
|
|
|
self.check_consistent_bindings(arm);
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
visit::walk_expr_opt(self, arm.guard, ());
|
|
|
|
self.resolve_block(&arm.body);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-03-07 17:37:14 -06:00
|
|
|
self.value_ribs.pop();
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_block(&mut self, block: &Block) {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving block) entering block");
|
2013-08-31 11:13:04 -05:00
|
|
|
self.value_ribs.push(@Rib::new(NormalRibKind));
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// Move down in the graph, if there's an anonymous module rooted here.
|
|
|
|
let orig_module = self.current_module;
|
2013-07-16 13:08:35 -05:00
|
|
|
match self.current_module.anonymous_children.find(&block.id) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => { /* Nothing to do. */ }
|
2013-03-22 21:26:41 -05:00
|
|
|
Some(&anonymous_module) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving block) found anonymous module, moving \
|
2012-08-22 19:24:52 -05:00
|
|
|
down");
|
2012-05-22 12:54:12 -05:00
|
|
|
self.current_module = anonymous_module;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Descend into the block.
|
2013-09-26 21:10:16 -05:00
|
|
|
visit::walk_block(self, block, ());
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// Move back up.
|
|
|
|
self.current_module = orig_module;
|
|
|
|
|
2013-03-07 17:37:14 -06:00
|
|
|
self.value_ribs.pop();
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving block) leaving block");
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_type(&mut self, ty: &Ty) {
|
2012-08-06 14:34:08 -05:00
|
|
|
match ty.node {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Like path expressions, the interpretation of path types depends
|
|
|
|
// on whether the path has multiple elements in it or not.
|
|
|
|
|
2013-07-05 20:38:56 -05:00
|
|
|
ty_path(ref path, ref bounds, path_id) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// This is a path in the type namespace. Walk through scopes
|
|
|
|
// scopes looking for it.
|
2012-10-15 16:56:42 -05:00
|
|
|
let mut result_def = None;
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
// First, check to see whether the name is a primitive type.
|
2013-08-07 11:47:28 -05:00
|
|
|
if path.segments.len() == 1 {
|
2013-06-26 17:56:13 -05:00
|
|
|
let id = path.segments.last().identifier;
|
2012-10-15 16:56:42 -05:00
|
|
|
|
|
|
|
match self.primitive_type_table
|
|
|
|
.primitive_types
|
2013-06-26 17:56:13 -05:00
|
|
|
.find(&id.name) {
|
2012-10-15 16:56:42 -05:00
|
|
|
|
2013-03-22 21:26:41 -05:00
|
|
|
Some(&primitive_type) => {
|
2012-10-15 16:56:42 -05:00
|
|
|
result_def =
|
2013-09-01 20:45:37 -05:00
|
|
|
Some(DefPrimTy(primitive_type));
|
2013-08-08 13:38:10 -05:00
|
|
|
|
|
|
|
if path.segments
|
|
|
|
.iter()
|
|
|
|
.any(|s| s.lifetime.is_some()) {
|
|
|
|
self.session.span_err(path.span,
|
|
|
|
"lifetime parameters \
|
|
|
|
are not allowed on \
|
|
|
|
this type")
|
|
|
|
} else if path.segments
|
|
|
|
.iter()
|
|
|
|
.any(|s| s.types.len() > 0) {
|
|
|
|
self.session.span_err(path.span,
|
|
|
|
"type parameters are \
|
|
|
|
not allowed on this \
|
|
|
|
type")
|
|
|
|
}
|
2012-10-15 16:56:42 -05:00
|
|
|
}
|
|
|
|
None => {
|
|
|
|
// Continue.
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match result_def {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-08-08 13:38:10 -05:00
|
|
|
match self.resolve_path(ty.id,
|
|
|
|
path,
|
|
|
|
TypeNS,
|
2013-09-26 21:10:16 -05:00
|
|
|
true) {
|
2012-10-15 16:56:42 -05:00
|
|
|
Some(def) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving type) resolved `{}` to \
|
|
|
|
type {:?}",
|
2013-08-08 13:38:10 -05:00
|
|
|
self.session.str_of(path.segments
|
|
|
|
.last()
|
|
|
|
.identifier),
|
2012-10-18 15:29:34 -05:00
|
|
|
def);
|
2012-10-15 16:56:42 -05:00
|
|
|
result_def = Some(def);
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
result_def = None;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-08 13:38:10 -05:00
|
|
|
Some(_) => {} // Continue.
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-03-20 00:17:42 -05:00
|
|
|
match result_def {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(def) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Write the result into the def map.
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving type) writing resolution for `{}` \
|
|
|
|
(id {})",
|
2013-08-07 11:47:28 -05:00
|
|
|
self.path_idents_to_str(path),
|
2012-08-22 19:24:52 -05:00
|
|
|
path_id);
|
2012-05-22 12:54:12 -05:00
|
|
|
self.record_def(path_id, def);
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-09-28 00:38:08 -05:00
|
|
|
let msg = format!("use of undeclared type name `{}`",
|
|
|
|
self.path_idents_to_str(path));
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_error(ty.span, msg);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
2013-06-17 14:16:30 -05:00
|
|
|
|
2013-06-20 17:23:25 -05:00
|
|
|
do bounds.map |bound_vec| {
|
2013-08-03 11:45:23 -05:00
|
|
|
for bound in bound_vec.iter() {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_type_parameter_bound(ty.id, bound);
|
2013-06-20 17:23:25 -05:00
|
|
|
}
|
|
|
|
};
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-05-10 14:57:27 -05:00
|
|
|
ty_closure(c) => {
|
2013-06-20 17:23:25 -05:00
|
|
|
do c.bounds.map |bounds| {
|
2013-08-03 11:45:23 -05:00
|
|
|
for bound in bounds.iter() {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_type_parameter_bound(ty.id, bound);
|
2013-06-20 17:23:25 -05:00
|
|
|
}
|
|
|
|
};
|
2013-09-26 21:10:16 -05:00
|
|
|
visit::walk_ty(self, ty, ());
|
2013-05-10 14:57:27 -05:00
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Just resolve embedded types.
|
2013-09-26 21:10:16 -05:00
|
|
|
visit::walk_ty(self, ty, ());
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_pattern(&mut self,
|
2013-09-01 20:45:37 -05:00
|
|
|
pattern: @Pat,
|
2013-05-31 17:17:22 -05:00
|
|
|
mode: PatternBindingMode,
|
|
|
|
mutability: Mutability,
|
|
|
|
// Maps idents to the node ID for the (outermost)
|
|
|
|
// pattern that binds them
|
2013-09-26 21:10:16 -05:00
|
|
|
bindings_list: Option<@mut HashMap<Name,NodeId>>) {
|
2012-07-27 15:03:04 -05:00
|
|
|
let pat_id = pattern.id;
|
2013-08-02 01:17:20 -05:00
|
|
|
do walk_pat(pattern) |pattern| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match pattern.node {
|
2013-09-01 20:45:37 -05:00
|
|
|
PatIdent(binding_mode, ref path, _)
|
2013-08-07 11:47:28 -05:00
|
|
|
if !path.global && path.segments.len() == 1 => {
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// The meaning of pat_ident with no type parameters
|
2012-10-30 17:53:06 -05:00
|
|
|
// depends on whether an enum variant or unit-like struct
|
|
|
|
// with that name is in scope. The probing lookup has to
|
|
|
|
// be careful not to emit spurious errors. Only matching
|
|
|
|
// patterns (match) can match nullary variants or
|
|
|
|
// unit-like structs. For binding patterns (let), matching
|
|
|
|
// such a value is simply disallowed (since it's rarely
|
|
|
|
// what you want).
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-08-07 11:47:28 -05:00
|
|
|
let ident = path.segments[0].identifier;
|
2013-09-05 16:15:00 -05:00
|
|
|
let renamed = mtwt_resolve(ident);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2012-10-30 17:53:06 -05:00
|
|
|
match self.resolve_bare_identifier_pattern(ident) {
|
|
|
|
FoundStructOrEnumVariant(def)
|
|
|
|
if mode == RefutableMode => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving pattern) resolving `{}` to \
|
2012-10-30 17:53:06 -05:00
|
|
|
struct or enum variant",
|
2013-06-26 17:56:13 -05:00
|
|
|
interner_get(renamed));
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-01-24 18:24:45 -06:00
|
|
|
self.enforce_default_binding_mode(
|
|
|
|
pattern,
|
|
|
|
binding_mode,
|
|
|
|
"an enum variant");
|
2012-05-22 12:54:12 -05:00
|
|
|
self.record_def(pattern.id, def);
|
|
|
|
}
|
2012-10-30 17:53:06 -05:00
|
|
|
FoundStructOrEnumVariant(_) => {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(pattern.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("declaration of `{}` \
|
2012-07-06 21:06:58 -05:00
|
|
|
shadows an enum \
|
2012-10-30 17:53:06 -05:00
|
|
|
variant or unit-like \
|
|
|
|
struct in scope",
|
2013-06-26 17:56:13 -05:00
|
|
|
interner_get(renamed)));
|
2012-07-06 21:06:58 -05:00
|
|
|
}
|
2012-11-13 00:10:15 -06:00
|
|
|
FoundConst(def) if mode == RefutableMode => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving pattern) resolving `{}` to \
|
2012-11-13 00:10:15 -06:00
|
|
|
constant",
|
2013-06-26 17:56:13 -05:00
|
|
|
interner_get(renamed));
|
2012-11-13 00:10:15 -06:00
|
|
|
|
2013-01-24 18:24:45 -06:00
|
|
|
self.enforce_default_binding_mode(
|
|
|
|
pattern,
|
|
|
|
binding_mode,
|
|
|
|
"a constant");
|
2012-11-13 00:10:15 -06:00
|
|
|
self.record_def(pattern.id, def);
|
|
|
|
}
|
|
|
|
FoundConst(_) => {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(pattern.span,
|
2013-05-19 00:07:44 -05:00
|
|
|
"only refutable patterns \
|
|
|
|
allowed here");
|
2012-07-06 21:06:58 -05:00
|
|
|
}
|
2012-10-30 17:53:06 -05:00
|
|
|
BareIdentifierPatternUnresolved => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving pattern) binding `{}`",
|
2013-06-26 17:56:13 -05:00
|
|
|
interner_get(renamed));
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
let is_mutable = mutability == Mutable;
|
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
let def = match mode {
|
2012-08-03 21:59:04 -05:00
|
|
|
RefutableMode => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// For pattern arms, we must use
|
|
|
|
// `def_binding` definitions.
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
DefBinding(pattern.id, binding_mode)
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-11-06 20:41:06 -06:00
|
|
|
LocalIrrefutableMode => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// But for locals, we use `def_local`.
|
2013-09-01 20:45:37 -05:00
|
|
|
DefLocal(pattern.id, is_mutable)
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-04-24 03:29:46 -05:00
|
|
|
ArgumentIrrefutableMode => {
|
2012-11-06 20:41:06 -06:00
|
|
|
// And for function arguments, `def_arg`.
|
2013-09-01 20:45:37 -05:00
|
|
|
DefArg(pattern.id, is_mutable)
|
2012-11-06 20:41:06 -06:00
|
|
|
}
|
2012-07-27 15:03:04 -05:00
|
|
|
};
|
2012-05-22 12:54:12 -05:00
|
|
|
|
|
|
|
// Record the definition so that later passes
|
|
|
|
// will be able to distinguish variants from
|
|
|
|
// locals in patterns.
|
|
|
|
|
|
|
|
self.record_def(pattern.id, def);
|
|
|
|
|
|
|
|
// Add the binding to the local ribs, if it
|
|
|
|
// doesn't already exist in the bindings list. (We
|
|
|
|
// must not add it if it's in the bindings list
|
|
|
|
// because that breaks the assumptions later
|
|
|
|
// passes make about or-patterns.)
|
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match bindings_list {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(bindings_list)
|
2013-06-26 17:56:13 -05:00
|
|
|
if !bindings_list.contains_key(&renamed) => {
|
2013-03-16 13:11:31 -05:00
|
|
|
let this = &mut *self;
|
|
|
|
let last_rib = this.value_ribs[
|
|
|
|
this.value_ribs.len() - 1];
|
2013-06-26 17:56:13 -05:00
|
|
|
last_rib.bindings.insert(renamed,
|
2013-08-31 11:13:04 -05:00
|
|
|
DlDef(def));
|
2013-06-26 17:56:13 -05:00
|
|
|
bindings_list.insert(renamed, pat_id);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(b) => {
|
2013-06-26 17:56:13 -05:00
|
|
|
if b.find(&renamed) == Some(&pat_id) {
|
2012-07-27 15:03:04 -05:00
|
|
|
// Then this is a duplicate variable
|
|
|
|
// in the same disjunct, which is an
|
|
|
|
// error
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(pattern.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("Identifier `{}` is bound more \
|
2012-07-27 15:03:04 -05:00
|
|
|
than once in the same pattern",
|
2012-07-18 18:18:02 -05:00
|
|
|
path_to_str(path, self.session
|
2012-08-22 19:24:52 -05:00
|
|
|
.intr())));
|
2012-07-27 15:03:04 -05:00
|
|
|
}
|
|
|
|
// Not bound in the same pattern: do nothing
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-03-16 13:11:31 -05:00
|
|
|
let this = &mut *self;
|
|
|
|
let last_rib = this.value_ribs[
|
|
|
|
this.value_ribs.len() - 1];
|
2013-06-26 17:56:13 -05:00
|
|
|
last_rib.bindings.insert(renamed,
|
2013-08-31 11:13:04 -05:00
|
|
|
DlDef(def));
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the types in the path pattern.
|
2013-08-07 11:47:28 -05:00
|
|
|
for ty in path.segments
|
|
|
|
.iter()
|
2013-08-08 13:38:10 -05:00
|
|
|
.flat_map(|seg| seg.types.iter()) {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_type(ty);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
PatIdent(binding_mode, ref path, _) => {
|
2013-03-13 00:39:32 -05:00
|
|
|
// This must be an enum variant, struct, or constant.
|
2013-09-26 21:10:16 -05:00
|
|
|
match self.resolve_path(pat_id, path, ValueNS, false) {
|
2013-09-01 20:45:37 -05:00
|
|
|
Some(def @ DefVariant(*)) |
|
|
|
|
Some(def @ DefStruct(*)) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
self.record_def(pattern.id, def);
|
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
Some(def @ DefStatic(*)) => {
|
2013-03-13 00:39:32 -05:00
|
|
|
self.enforce_default_binding_mode(
|
|
|
|
pattern,
|
|
|
|
binding_mode,
|
|
|
|
"a constant");
|
|
|
|
self.record_def(pattern.id, def);
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(_) => {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(
|
2012-07-18 18:18:02 -05:00
|
|
|
path.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("`{}` is not an enum variant or constant",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(
|
2013-08-07 11:47:28 -05:00
|
|
|
path.segments.last().identifier)))
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(path.span,
|
2013-05-19 00:07:44 -05:00
|
|
|
"unresolved enum variant");
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the types in the path pattern.
|
2013-08-07 11:47:28 -05:00
|
|
|
for ty in path.segments
|
|
|
|
.iter()
|
2013-08-08 13:38:10 -05:00
|
|
|
.flat_map(|s| s.types.iter()) {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_type(ty);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
PatEnum(ref path, _) => {
|
2013-03-21 02:27:26 -05:00
|
|
|
// This must be an enum variant, struct or const.
|
2013-09-26 21:10:16 -05:00
|
|
|
match self.resolve_path(pat_id, path, ValueNS, false) {
|
2013-09-01 20:45:37 -05:00
|
|
|
Some(def @ DefFn(*)) |
|
|
|
|
Some(def @ DefVariant(*)) |
|
|
|
|
Some(def @ DefStruct(*)) |
|
|
|
|
Some(def @ DefStatic(*)) => {
|
2013-03-13 00:39:32 -05:00
|
|
|
self.record_def(pattern.id, def);
|
|
|
|
}
|
|
|
|
Some(_) => {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(
|
2013-03-13 00:39:32 -05:00
|
|
|
path.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("`{}` is not an enum variant, struct or const",
|
2013-08-07 11:47:28 -05:00
|
|
|
self.session
|
|
|
|
.str_of(path.segments
|
|
|
|
.last()
|
|
|
|
.identifier)));
|
2013-03-13 00:39:32 -05:00
|
|
|
}
|
|
|
|
None => {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(path.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("unresolved enum variant, \
|
|
|
|
struct or const `{}`",
|
2013-09-01 20:45:37 -05:00
|
|
|
self.session
|
|
|
|
.str_of(path.segments
|
|
|
|
.last()
|
|
|
|
.identifier)));
|
2013-03-13 00:39:32 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the types in the path pattern.
|
2013-08-07 11:47:28 -05:00
|
|
|
for ty in path.segments
|
|
|
|
.iter()
|
2013-08-08 13:38:10 -05:00
|
|
|
.flat_map(|s| s.types.iter()) {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_type(ty);
|
2013-03-13 00:39:32 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
PatLit(expr) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_expr(expr);
|
2012-07-10 14:29:30 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
PatRange(first_expr, last_expr) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_expr(first_expr);
|
|
|
|
self.resolve_expr(last_expr);
|
2012-07-10 14:29:30 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
PatStruct(ref path, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
match self.resolve_path(pat_id, path, TypeNS, false) {
|
2013-09-01 20:45:37 -05:00
|
|
|
Some(DefTy(class_id))
|
2013-05-02 13:32:37 -05:00
|
|
|
if self.structs.contains(&class_id) => {
|
2013-09-01 20:45:37 -05:00
|
|
|
let class_def = DefStruct(class_id);
|
2012-08-06 19:01:14 -05:00
|
|
|
self.record_def(pattern.id, class_def);
|
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
Some(definition @ DefStruct(class_id)) => {
|
2013-05-02 13:32:37 -05:00
|
|
|
assert!(self.structs.contains(&class_id));
|
2012-12-10 14:37:50 -06:00
|
|
|
self.record_def(pattern.id, definition);
|
|
|
|
}
|
2013-09-08 19:36:01 -05:00
|
|
|
Some(definition @ DefVariant(_, variant_id, _))
|
2013-05-02 13:32:37 -05:00
|
|
|
if self.structs.contains(&variant_id) => {
|
2012-08-07 21:12:58 -05:00
|
|
|
self.record_def(pattern.id, definition);
|
|
|
|
}
|
2012-12-10 14:37:50 -06:00
|
|
|
result => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving pattern) didn't find struct \
|
|
|
|
def: {:?}", result);
|
|
|
|
let msg = format!("`{}` does not name a structure",
|
|
|
|
self.path_idents_to_str(path));
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_error(path.span, msg);
|
2012-08-06 19:01:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-31 21:25:24 -05:00
|
|
|
_ => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Nothing to do.
|
|
|
|
}
|
|
|
|
}
|
2013-08-02 01:17:20 -05:00
|
|
|
true
|
|
|
|
};
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_bare_identifier_pattern(&mut self, name: Ident)
|
2013-05-31 17:17:22 -05:00
|
|
|
->
|
|
|
|
BareIdentifierPatternResolution {
|
2012-08-06 14:34:08 -05:00
|
|
|
match self.resolve_item_in_lexical_scope(self.current_module,
|
2012-10-30 17:53:06 -05:00
|
|
|
name,
|
2012-12-23 16:41:37 -06:00
|
|
|
ValueNS,
|
|
|
|
SearchThroughModules) {
|
2012-08-03 21:59:04 -05:00
|
|
|
Success(target) => {
|
2012-08-06 14:34:08 -05:00
|
|
|
match target.bindings.value_def {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-09-28 00:38:08 -05:00
|
|
|
fail2!("resolved name in the value namespace to a \
|
2013-02-11 21:26:38 -06:00
|
|
|
set of name bindings with no def?!");
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(def) => {
|
2012-08-17 19:55:34 -05:00
|
|
|
match def.def {
|
2013-09-01 20:45:37 -05:00
|
|
|
def @ DefVariant(*) | def @ DefStruct(*) => {
|
2012-10-30 17:53:06 -05:00
|
|
|
return FoundStructOrEnumVariant(def);
|
2012-08-17 19:55:34 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
def @ DefStatic(_, false) => {
|
2012-11-13 00:10:15 -06:00
|
|
|
return FoundConst(def);
|
2012-08-17 19:55:34 -05:00
|
|
|
}
|
|
|
|
_ => {
|
2012-10-30 17:53:06 -05:00
|
|
|
return BareIdentifierPatternUnresolved;
|
2012-08-17 19:55:34 -05:00
|
|
|
}
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
Indeterminate => {
|
2013-09-28 00:38:08 -05:00
|
|
|
fail2!("unexpected indeterminate result");
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
Failed => {
|
2012-10-30 17:53:06 -05:00
|
|
|
return BareIdentifierPatternUnresolved;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
/// If `check_ribs` is true, checks the local definitions first; i.e.
|
|
|
|
/// doesn't skip straight to the containing module.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_path(&mut self,
|
2013-07-27 03:25:59 -05:00
|
|
|
id: NodeId,
|
2013-07-05 05:15:21 -05:00
|
|
|
path: &Path,
|
2013-05-31 17:17:22 -05:00
|
|
|
namespace: Namespace,
|
2013-09-26 21:10:16 -05:00
|
|
|
check_ribs: bool)
|
2013-09-01 20:45:37 -05:00
|
|
|
-> Option<Def> {
|
2012-05-22 12:54:12 -05:00
|
|
|
// First, resolve the types.
|
2013-08-08 13:38:10 -05:00
|
|
|
for ty in path.segments.iter().flat_map(|s| s.types.iter()) {
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_type(ty);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if path.global {
|
2012-08-01 19:30:05 -05:00
|
|
|
return self.resolve_crate_relative_path(path,
|
2013-06-14 20:21:47 -05:00
|
|
|
self.xray_context,
|
|
|
|
namespace);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-08-07 11:47:28 -05:00
|
|
|
let unqualified_def = self.resolve_identifier(path.segments
|
|
|
|
.last()
|
|
|
|
.identifier,
|
|
|
|
namespace,
|
|
|
|
check_ribs,
|
|
|
|
path.span);
|
2013-07-08 10:34:28 -05:00
|
|
|
|
2013-08-07 11:47:28 -05:00
|
|
|
if path.segments.len() > 1 {
|
|
|
|
let def = self.resolve_module_relative_path(path,
|
|
|
|
self.xray_context,
|
|
|
|
namespace);
|
2013-07-08 10:34:28 -05:00
|
|
|
match (def, unqualified_def) {
|
|
|
|
(Some(d), Some(ud)) if d == ud => {
|
|
|
|
self.session.add_lint(unnecessary_qualification,
|
2013-08-08 13:38:10 -05:00
|
|
|
id,
|
|
|
|
path.span,
|
2013-07-08 10:34:28 -05:00
|
|
|
~"unnecessary qualification");
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
2013-08-08 13:38:10 -05:00
|
|
|
|
2013-07-08 10:34:28 -05:00
|
|
|
return def;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-07-08 10:34:28 -05:00
|
|
|
return unqualified_def;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-05-30 19:46:25 -05:00
|
|
|
// resolve a single identifier (used as a varref)
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_identifier(&mut self,
|
2013-09-01 19:50:59 -05:00
|
|
|
identifier: Ident,
|
2013-05-31 17:17:22 -05:00
|
|
|
namespace: Namespace,
|
|
|
|
check_ribs: bool,
|
2013-08-31 11:13:04 -05:00
|
|
|
span: Span)
|
2013-09-01 20:45:37 -05:00
|
|
|
-> Option<Def> {
|
2012-05-22 12:54:12 -05:00
|
|
|
if check_ribs {
|
2012-08-06 14:34:08 -05:00
|
|
|
match self.resolve_identifier_in_local_ribs(identifier,
|
2012-07-06 21:06:58 -05:00
|
|
|
namespace,
|
|
|
|
span) {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(def) => {
|
|
|
|
return Some(def);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Continue.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return self.resolve_item_by_identifier_in_lexical_scope(identifier,
|
2013-01-08 21:37:25 -06:00
|
|
|
namespace);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-02-14 20:37:25 -06:00
|
|
|
// FIXME #4952: Merge me with resolve_name_in_module?
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_definition_of_name_in_module(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
containing_module: @mut Module,
|
2013-09-01 19:50:59 -05:00
|
|
|
name: Ident,
|
2013-05-31 17:17:22 -05:00
|
|
|
namespace: Namespace,
|
|
|
|
xray: XrayFlag)
|
|
|
|
-> NameDefinition {
|
2012-05-22 12:54:12 -05:00
|
|
|
// First, search children.
|
2013-08-21 20:39:30 -05:00
|
|
|
self.populate_module_if_necessary(containing_module);
|
2013-06-26 17:56:13 -05:00
|
|
|
match containing_module.children.find(&name.name) {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(child_name_bindings) => {
|
2012-10-15 16:56:42 -05:00
|
|
|
match (child_name_bindings.def_for_namespace(namespace),
|
|
|
|
child_name_bindings.privacy_for_namespace(namespace)) {
|
|
|
|
(Some(def), Some(Public)) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Found it. Stop the search here.
|
2012-10-15 16:56:42 -05:00
|
|
|
return ChildNameDefinition(def);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-10-15 16:56:42 -05:00
|
|
|
(Some(def), _) if xray == Xray => {
|
|
|
|
// Found it. Stop the search here.
|
|
|
|
return ChildNameDefinition(def);
|
|
|
|
}
|
|
|
|
(Some(_), _) | (None, _) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Continue.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Continue.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Next, search import resolutions.
|
2013-06-26 17:56:13 -05:00
|
|
|
match containing_module.import_resolutions.find(&name.name) {
|
2012-10-02 20:13:56 -05:00
|
|
|
Some(import_resolution) if import_resolution.privacy == Public ||
|
|
|
|
xray == Xray => {
|
2012-08-06 14:34:08 -05:00
|
|
|
match (*import_resolution).target_for_namespace(namespace) {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(target) => {
|
2012-10-15 16:56:42 -05:00
|
|
|
match (target.bindings.def_for_namespace(namespace),
|
|
|
|
target.bindings.privacy_for_namespace(
|
|
|
|
namespace)) {
|
|
|
|
(Some(def), Some(Public)) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Found it.
|
2013-06-09 23:39:15 -05:00
|
|
|
let id = import_resolution.id(namespace);
|
|
|
|
self.used_imports.insert(id);
|
2012-10-15 16:56:42 -05:00
|
|
|
return ImportNameDefinition(def);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-10-15 16:56:42 -05:00
|
|
|
(Some(_), _) | (None, _) => {
|
2012-07-11 17:00:40 -05:00
|
|
|
// This can happen with external impls, due to
|
|
|
|
// the imperfect way we read the metadata.
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-03-26 21:53:33 -05:00
|
|
|
None => {}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
2013-03-26 21:53:33 -05:00
|
|
|
Some(_) | None => {} // Continue.
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, search through external children.
|
|
|
|
if namespace == TypeNS {
|
2013-06-26 17:56:13 -05:00
|
|
|
match containing_module.external_module_children.find(&name.name) {
|
2013-03-26 21:53:33 -05:00
|
|
|
None => {}
|
|
|
|
Some(module) => {
|
|
|
|
match module.def_id {
|
|
|
|
None => {} // Continue.
|
|
|
|
Some(def_id) => {
|
2013-09-01 20:45:37 -05:00
|
|
|
return ChildNameDefinition(DefMod(def_id));
|
2013-03-26 21:53:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
2013-03-26 21:53:33 -05:00
|
|
|
|
|
|
|
return NoNameDefinition;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-06-26 13:16:09 -05:00
|
|
|
// resolve a "module-relative" path, e.g. a::b::c
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_module_relative_path(&mut self,
|
2013-07-05 05:15:21 -05:00
|
|
|
path: &Path,
|
2013-05-31 17:17:22 -05:00
|
|
|
xray: XrayFlag,
|
|
|
|
namespace: Namespace)
|
2013-09-01 20:45:37 -05:00
|
|
|
-> Option<Def> {
|
2013-06-26 13:16:09 -05:00
|
|
|
let module_path_idents = path.segments.init().map(|ps| ps.identifier);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-04-12 00:15:30 -05:00
|
|
|
let containing_module;
|
2013-05-13 18:13:20 -05:00
|
|
|
match self.resolve_module_path(self.current_module,
|
|
|
|
module_path_idents,
|
|
|
|
UseLexicalScope,
|
|
|
|
path.span,
|
|
|
|
PathPublicOnlySearch) {
|
2012-08-03 21:59:04 -05:00
|
|
|
Failed => {
|
2013-09-28 00:38:08 -05:00
|
|
|
let msg = format!("use of undeclared module `{}`",
|
|
|
|
self.idents_to_str(module_path_idents));
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_error(path.span, msg);
|
2012-08-20 14:23:37 -05:00
|
|
|
return None;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
Indeterminate => {
|
2013-09-28 00:38:08 -05:00
|
|
|
fail2!("indeterminate unexpected");
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
Success(resulting_module) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
containing_module = resulting_module;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-26 17:56:13 -05:00
|
|
|
let ident = path.segments.last().identifier;
|
2013-06-03 06:31:43 -05:00
|
|
|
let def = match self.resolve_definition_of_name_in_module(containing_module,
|
2013-06-26 17:56:13 -05:00
|
|
|
ident,
|
2012-07-18 18:18:02 -05:00
|
|
|
namespace,
|
|
|
|
xray) {
|
2012-08-03 21:59:04 -05:00
|
|
|
NoNameDefinition => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// We failed to resolve the name. Report an error.
|
2012-08-20 14:23:37 -05:00
|
|
|
return None;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
ChildNameDefinition(def) | ImportNameDefinition(def) => {
|
2013-06-03 06:31:43 -05:00
|
|
|
def
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-06-03 06:31:43 -05:00
|
|
|
};
|
|
|
|
match containing_module.kind {
|
|
|
|
TraitModuleKind | ImplModuleKind => {
|
2013-06-26 17:56:13 -05:00
|
|
|
match self.method_map.find(&ident.name) {
|
2013-06-03 06:31:43 -05:00
|
|
|
Some(s) => {
|
|
|
|
match containing_module.def_id {
|
|
|
|
Some(def_id) if s.contains(&def_id) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("containing module was a trait or impl \
|
2013-06-03 06:31:43 -05:00
|
|
|
and name was a method -> not resolved");
|
|
|
|
return None;
|
|
|
|
},
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
None => (),
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => (),
|
|
|
|
};
|
|
|
|
return Some(def);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-03-01 12:44:43 -06:00
|
|
|
/// Invariant: This must be called only during main resolution, not during
|
|
|
|
/// import resolution.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_crate_relative_path(&mut self,
|
2013-07-05 05:15:21 -05:00
|
|
|
path: &Path,
|
2013-05-31 17:17:22 -05:00
|
|
|
xray: XrayFlag,
|
|
|
|
namespace: Namespace)
|
2013-09-01 20:45:37 -05:00
|
|
|
-> Option<Def> {
|
2013-06-26 13:16:09 -05:00
|
|
|
let module_path_idents = path.segments.init().map(|ps| ps.identifier);
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-02-04 16:02:01 -06:00
|
|
|
let root_module = self.graph_root.get_module();
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-04-12 00:15:30 -05:00
|
|
|
let containing_module;
|
2012-08-06 14:34:08 -05:00
|
|
|
match self.resolve_module_path_from_root(root_module,
|
2012-12-23 16:41:37 -06:00
|
|
|
module_path_idents,
|
|
|
|
0,
|
2013-03-01 12:44:43 -06:00
|
|
|
path.span,
|
2013-05-13 18:13:20 -05:00
|
|
|
PathPublicOrPrivateSearch) {
|
2012-08-03 21:59:04 -05:00
|
|
|
Failed => {
|
2013-09-28 00:38:08 -05:00
|
|
|
let msg = format!("use of undeclared module `::{}`",
|
|
|
|
self.idents_to_str(module_path_idents));
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_error(path.span, msg);
|
2012-08-20 14:23:37 -05:00
|
|
|
return None;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
Indeterminate => {
|
2013-09-28 00:38:08 -05:00
|
|
|
fail2!("indeterminate unexpected");
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
Success(resulting_module) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
containing_module = resulting_module;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-07 11:47:28 -05:00
|
|
|
let name = path.segments.last().identifier;
|
2012-08-06 14:34:08 -05:00
|
|
|
match self.resolve_definition_of_name_in_module(containing_module,
|
2012-12-23 16:41:37 -06:00
|
|
|
name,
|
|
|
|
namespace,
|
|
|
|
xray) {
|
2012-08-03 21:59:04 -05:00
|
|
|
NoNameDefinition => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// We failed to resolve the name. Report an error.
|
2012-08-20 14:23:37 -05:00
|
|
|
return None;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
ChildNameDefinition(def) | ImportNameDefinition(def) => {
|
2012-08-20 14:23:37 -05:00
|
|
|
return Some(def);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_identifier_in_local_ribs(&mut self,
|
2013-09-01 19:50:59 -05:00
|
|
|
ident: Ident,
|
2013-05-31 17:17:22 -05:00
|
|
|
namespace: Namespace,
|
2013-08-31 11:13:04 -05:00
|
|
|
span: Span)
|
2013-09-01 20:45:37 -05:00
|
|
|
-> Option<Def> {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Check the local set of ribs.
|
2013-04-12 00:15:30 -05:00
|
|
|
let search_result;
|
2012-08-06 14:34:08 -05:00
|
|
|
match namespace {
|
2012-08-03 21:59:04 -05:00
|
|
|
ValueNS => {
|
2013-09-05 16:15:00 -05:00
|
|
|
let renamed = mtwt_resolve(ident);
|
2013-06-26 17:56:13 -05:00
|
|
|
search_result = self.search_ribs(self.value_ribs, renamed,
|
2013-03-07 17:37:14 -06:00
|
|
|
span,
|
2012-07-06 21:06:58 -05:00
|
|
|
DontAllowCapturingSelf);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
TypeNS => {
|
2013-06-26 17:56:13 -05:00
|
|
|
let name = ident.name;
|
|
|
|
search_result = self.search_ribs(self.type_ribs, name,
|
2013-03-07 17:37:14 -06:00
|
|
|
span, AllowCapturingSelf);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-20 00:17:42 -05:00
|
|
|
match search_result {
|
2013-08-31 11:13:04 -05:00
|
|
|
Some(DlDef(def)) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving path in local ribs) resolved `{}` to \
|
|
|
|
local: {:?}",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(ident),
|
2012-08-22 19:24:52 -05:00
|
|
|
def);
|
2012-08-20 14:23:37 -05:00
|
|
|
return Some(def);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-08-31 11:13:04 -05:00
|
|
|
Some(DlField) | Some(DlImpl(_)) | None => {
|
2012-08-20 14:23:37 -05:00
|
|
|
return None;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_self_value_in_local_ribs(&mut self, span: Span)
|
2013-09-01 20:45:37 -05:00
|
|
|
-> Option<Def> {
|
2013-05-10 17:15:06 -05:00
|
|
|
// FIXME #4950: This should not use a while loop.
|
2013-09-26 21:10:16 -05:00
|
|
|
let mut i = self.value_ribs.len();
|
2013-05-10 17:15:06 -05:00
|
|
|
while i != 0 {
|
|
|
|
i -= 1;
|
2013-09-26 21:10:16 -05:00
|
|
|
match *self.value_ribs[i].self_binding {
|
2013-05-10 17:15:06 -05:00
|
|
|
Some(def_like) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
match self.upvarify(self.value_ribs,
|
2013-05-10 17:15:06 -05:00
|
|
|
i,
|
|
|
|
def_like,
|
|
|
|
span,
|
|
|
|
DontAllowCapturingSelf) {
|
2013-08-31 11:13:04 -05:00
|
|
|
Some(DlDef(def)) => return Some(def),
|
2013-05-10 17:15:06 -05:00
|
|
|
_ => {
|
2013-08-21 17:57:07 -05:00
|
|
|
if self.session.has_errors() {
|
|
|
|
// May happen inside a nested fn item, cf #6642.
|
|
|
|
return None;
|
|
|
|
} else {
|
|
|
|
self.session.span_bug(span,
|
|
|
|
"self wasn't mapped to a def?!")
|
|
|
|
}
|
2013-05-10 17:15:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_item_by_identifier_in_lexical_scope(&mut self,
|
2013-09-01 19:50:59 -05:00
|
|
|
ident: Ident,
|
2013-05-31 17:17:22 -05:00
|
|
|
namespace: Namespace)
|
2013-09-01 20:45:37 -05:00
|
|
|
-> Option<Def> {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Check the items.
|
2012-08-06 14:34:08 -05:00
|
|
|
match self.resolve_item_in_lexical_scope(self.current_module,
|
2012-12-23 16:41:37 -06:00
|
|
|
ident,
|
|
|
|
namespace,
|
2013-01-08 21:37:25 -06:00
|
|
|
DontSearchThroughModules) {
|
2012-08-03 21:59:04 -05:00
|
|
|
Success(target) => {
|
2012-08-06 14:34:08 -05:00
|
|
|
match (*target.bindings).def_for_namespace(namespace) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-10-15 16:56:42 -05:00
|
|
|
// This can happen if we were looking for a type and
|
|
|
|
// found a module instead. Modules don't have defs.
|
|
|
|
return None;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(def) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving item path in lexical scope) \
|
|
|
|
resolved `{}` to item",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(ident));
|
2012-10-15 16:56:42 -05:00
|
|
|
return Some(def);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
Indeterminate => {
|
2013-09-28 00:38:08 -05:00
|
|
|
fail2!("unexpected indeterminate result");
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
Failed => {
|
2012-08-20 14:23:37 -05:00
|
|
|
return None;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
fn with_no_errors<T>(&mut self, f: &fn(&mut Resolver) -> T) -> T {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.emit_errors = false;
|
2013-09-26 21:10:16 -05:00
|
|
|
let rs = f(self);
|
2013-08-13 19:54:14 -05:00
|
|
|
self.emit_errors = true;
|
|
|
|
rs
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
fn resolve_error(&mut self, span: Span, s: &str) {
|
2013-08-13 19:54:14 -05:00
|
|
|
if self.emit_errors {
|
|
|
|
self.session.span_err(span, s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn find_best_match_for_name(&mut self,
|
2013-05-31 17:17:22 -05:00
|
|
|
name: &str,
|
|
|
|
max_distance: uint)
|
2013-06-12 12:02:55 -05:00
|
|
|
-> Option<@str> {
|
2013-03-16 13:11:31 -05:00
|
|
|
let this = &mut *self;
|
|
|
|
|
2013-06-12 12:02:55 -05:00
|
|
|
let mut maybes: ~[@str] = ~[];
|
2013-02-23 02:22:51 -06:00
|
|
|
let mut values: ~[uint] = ~[];
|
|
|
|
|
2013-03-16 13:11:31 -05:00
|
|
|
let mut j = this.value_ribs.len();
|
2013-02-23 02:22:51 -06:00
|
|
|
while j != 0 {
|
|
|
|
j -= 1;
|
2013-08-03 11:45:23 -05:00
|
|
|
for (&k, _) in this.value_ribs[j].bindings.iter() {
|
2013-06-05 21:49:41 -05:00
|
|
|
maybes.push(interner_get(k));
|
2013-06-27 08:53:37 -05:00
|
|
|
values.push(uint::max_value);
|
2013-02-23 02:22:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut smallest = 0;
|
2013-08-03 11:45:23 -05:00
|
|
|
for (i, &other) in maybes.iter().enumerate() {
|
2013-06-13 10:39:06 -05:00
|
|
|
values[i] = name.lev_distance(other);
|
2013-02-23 02:22:51 -06:00
|
|
|
|
|
|
|
if values[i] <= values[smallest] {
|
|
|
|
smallest = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-14 04:52:12 -05:00
|
|
|
if values.len() > 0 &&
|
2013-02-23 02:22:51 -06:00
|
|
|
values[smallest] != uint::max_value &&
|
2013-06-09 09:44:58 -05:00
|
|
|
values[smallest] < name.len() + 2 &&
|
2013-03-27 02:15:59 -05:00
|
|
|
values[smallest] <= max_distance &&
|
2013-06-12 12:02:55 -05:00
|
|
|
name != maybes[smallest] {
|
2013-02-23 02:22:51 -06:00
|
|
|
|
2013-06-27 07:59:52 -05:00
|
|
|
Some(maybes.swap_remove(smallest))
|
2013-02-23 02:22:51 -06:00
|
|
|
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn resolve_expr(&mut self, expr: @Expr) {
|
2012-08-17 18:53:07 -05:00
|
|
|
// First, record candidate traits for this expression if it could
|
|
|
|
// result in the invocation of a method call.
|
2012-07-11 17:00:40 -05:00
|
|
|
|
|
|
|
self.record_candidate_traits_for_expr_if_necessary(expr);
|
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
// Next, resolve the node.
|
2012-08-06 14:34:08 -05:00
|
|
|
match expr.node {
|
2012-05-22 12:54:12 -05:00
|
|
|
// The interpretation of paths depends on whether the path has
|
|
|
|
// multiple elements in it or not.
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprPath(ref path) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// This is a local path in the value namespace. Walk through
|
|
|
|
// scopes looking for it.
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
match self.resolve_path(expr.id, path, ValueNS, true) {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(def) => {
|
2012-05-22 12:54:12 -05:00
|
|
|
// Write the result into the def map.
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving expr) resolved `{}`",
|
2013-08-07 11:47:28 -05:00
|
|
|
self.path_idents_to_str(path));
|
2013-06-14 20:21:47 -05:00
|
|
|
|
|
|
|
// First-class methods are not supported yet; error
|
|
|
|
// out here.
|
|
|
|
match def {
|
2013-09-01 20:45:37 -05:00
|
|
|
DefMethod(*) => {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(expr.span,
|
2013-06-14 20:21:47 -05:00
|
|
|
"first-class methods \
|
|
|
|
are not supported");
|
|
|
|
self.session.span_note(expr.span,
|
|
|
|
"call the method \
|
|
|
|
using the `.` \
|
|
|
|
syntax");
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
self.record_def(expr.id, def);
|
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-08-07 11:47:28 -05:00
|
|
|
let wrong_name = self.path_idents_to_str(path);
|
2013-09-27 21:46:09 -05:00
|
|
|
// Be helpful if the name refers to a struct
|
|
|
|
// (The pattern matching def_tys where the id is in self.structs
|
|
|
|
// matches on regular structs while excluding tuple- and enum-like
|
|
|
|
// structs, which wouldn't result in this error.)
|
|
|
|
match self.with_no_errors(|this|
|
|
|
|
this.resolve_path(expr.id, path, TypeNS, false)) {
|
|
|
|
Some(DefTy(struct_id))
|
|
|
|
if self.structs.contains(&struct_id) => {
|
|
|
|
self.resolve_error(expr.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("`{}` is a structure name, but \
|
|
|
|
this expression \
|
|
|
|
uses it like a function name",
|
|
|
|
wrong_name));
|
2013-09-27 21:46:09 -05:00
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
self.session.span_note(expr.span,
|
|
|
|
format!("Did you mean to write: \
|
|
|
|
`{} \\{ /* fields */ \\}`?",
|
|
|
|
wrong_name));
|
2013-08-13 19:54:14 -05:00
|
|
|
|
2013-02-23 02:22:51 -06:00
|
|
|
}
|
2013-09-27 21:46:09 -05:00
|
|
|
_ =>
|
|
|
|
// limit search to 5 to reduce the number
|
|
|
|
// of stupid suggestions
|
|
|
|
match self.find_best_match_for_name(wrong_name, 5) {
|
|
|
|
Some(m) => {
|
|
|
|
self.resolve_error(expr.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("unresolved name `{}`. \
|
|
|
|
Did you mean `{}`?",
|
|
|
|
wrong_name, m));
|
2013-09-27 21:46:09 -05:00
|
|
|
}
|
|
|
|
None => {
|
|
|
|
self.resolve_error(expr.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("unresolved name `{}`.",
|
|
|
|
wrong_name));
|
2013-09-27 21:46:09 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-22 13:40:42 -05:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
visit::walk_expr(self, expr, ());
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprFnBlock(ref fn_decl, ref block) => {
|
2013-07-16 13:08:35 -05:00
|
|
|
self.resolve_function(FunctionRibKind(expr.id, block.id),
|
2013-03-20 00:17:42 -05:00
|
|
|
Some(fn_decl),
|
2012-05-22 12:54:12 -05:00
|
|
|
NoTypeParameters,
|
2013-02-18 00:20:36 -06:00
|
|
|
block,
|
2013-09-26 21:10:16 -05:00
|
|
|
NoSelfBinding);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprStruct(ref path, _, _) => {
|
2012-07-23 20:44:59 -05:00
|
|
|
// Resolve the path to the structure it goes to.
|
2013-09-26 21:10:16 -05:00
|
|
|
match self.resolve_path(expr.id, path, TypeNS, false) {
|
2013-09-01 20:45:37 -05:00
|
|
|
Some(DefTy(class_id)) | Some(DefStruct(class_id))
|
2013-05-02 13:32:37 -05:00
|
|
|
if self.structs.contains(&class_id) => {
|
2013-09-01 20:45:37 -05:00
|
|
|
let class_def = DefStruct(class_id);
|
2012-07-26 17:29:33 -05:00
|
|
|
self.record_def(expr.id, class_def);
|
2012-07-23 20:44:59 -05:00
|
|
|
}
|
2013-09-08 19:36:01 -05:00
|
|
|
Some(definition @ DefVariant(_, class_id, _))
|
2013-05-02 13:32:37 -05:00
|
|
|
if self.structs.contains(&class_id) => {
|
2012-08-07 21:12:58 -05:00
|
|
|
self.record_def(expr.id, definition);
|
|
|
|
}
|
2013-08-06 23:50:23 -05:00
|
|
|
result => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(resolving expression) didn't find struct \
|
|
|
|
def: {:?}", result);
|
|
|
|
let msg = format!("`{}` does not name a structure",
|
|
|
|
self.path_idents_to_str(path));
|
2013-09-26 21:10:16 -05:00
|
|
|
self.resolve_error(path.span, msg);
|
2012-07-23 20:44:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
visit::walk_expr(self, expr, ());
|
2012-07-23 20:44:59 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprLoop(_, Some(label)) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
do self.with_label_rib |this| {
|
|
|
|
let def_like = DlDef(DefLabel(expr.id));
|
|
|
|
let rib = this.label_ribs[this.label_ribs.len() - 1];
|
|
|
|
// plain insert (no renaming)
|
|
|
|
rib.bindings.insert(label.name, def_like);
|
2012-08-14 21:20:56 -05:00
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
visit::walk_expr(this, expr, ());
|
2012-08-14 21:20:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
ExprForLoop(*) => fail2!("non-desugared expr_for_loop"),
|
2013-07-29 19:25:00 -05:00
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprBreak(Some(label)) | ExprAgain(Some(label)) => {
|
2013-09-10 14:01:44 -05:00
|
|
|
match self.search_ribs(self.label_ribs, label, expr.span,
|
2012-08-14 21:20:56 -05:00
|
|
|
DontAllowCapturingSelf) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None =>
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(expr.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("use of undeclared label \
|
|
|
|
`{}`",
|
2013-09-10 14:01:44 -05:00
|
|
|
interner_get(label))),
|
2013-09-01 20:45:37 -05:00
|
|
|
Some(DlDef(def @ DefLabel(_))) => {
|
2013-05-10 17:15:06 -05:00
|
|
|
self.record_def(expr.id, def)
|
|
|
|
}
|
|
|
|
Some(_) => {
|
2012-08-14 21:20:56 -05:00
|
|
|
self.session.span_bug(expr.span,
|
2013-05-19 00:07:44 -05:00
|
|
|
"label wasn't mapped to a \
|
|
|
|
label def!")
|
2013-05-10 17:15:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprSelf => {
|
2013-05-10 17:15:06 -05:00
|
|
|
match self.resolve_self_value_in_local_ribs(expr.span) {
|
|
|
|
None => {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(expr.span,
|
2013-05-19 00:07:44 -05:00
|
|
|
"`self` is not allowed in \
|
|
|
|
this context")
|
2013-05-10 17:15:06 -05:00
|
|
|
}
|
|
|
|
Some(def) => self.record_def(expr.id, def),
|
2012-08-14 21:20:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => {
|
2013-09-26 21:10:16 -05:00
|
|
|
visit::walk_expr(self, expr, ());
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn record_candidate_traits_for_expr_if_necessary(&mut self,
|
2013-09-01 20:45:37 -05:00
|
|
|
expr: @Expr) {
|
2012-08-06 14:34:08 -05:00
|
|
|
match expr.node {
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprField(_, ident, _) => {
|
2013-06-01 17:31:56 -05:00
|
|
|
// 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.
|
2012-07-18 18:18:02 -05:00
|
|
|
let traits = self.search_for_traits_containing_method(ident);
|
2013-03-07 17:37:14 -06:00
|
|
|
self.trait_map.insert(expr.id, @mut traits);
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprMethodCall(_, _, ident, _, _, _) => {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(recording candidate traits for expr) recording \
|
|
|
|
traits for {}",
|
2013-06-18 11:39:16 -05:00
|
|
|
expr.id);
|
2012-11-30 13:18:25 -06:00
|
|
|
let traits = self.search_for_traits_containing_method(ident);
|
2013-03-07 17:37:14 -06:00
|
|
|
self.trait_map.insert(expr.id, @mut traits);
|
2012-11-30 13:18:25 -06:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprBinary(_, BiAdd, _, _) | ExprAssignOp(_, BiAdd, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.add_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprBinary(_, BiSub, _, _) | ExprAssignOp(_, BiSub, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.sub_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprBinary(_, BiMul, _, _) | ExprAssignOp(_, BiMul, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.mul_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprBinary(_, BiDiv, _, _) | ExprAssignOp(_, BiDiv, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.div_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprBinary(_, BiRem, _, _) | ExprAssignOp(_, BiRem, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.rem_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprBinary(_, BiBitXor, _, _) | ExprAssignOp(_, BiBitXor, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.bitxor_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprBinary(_, BiBitAnd, _, _) | ExprAssignOp(_, BiBitAnd, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.bitand_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprBinary(_, BiBitOr, _, _) | ExprAssignOp(_, BiBitOr, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.bitor_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprBinary(_, BiShl, _, _) | ExprAssignOp(_, BiShl, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.shl_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprBinary(_, BiShr, _, _) | ExprAssignOp(_, BiShr, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.shr_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprBinary(_, BiLt, _, _) | ExprBinary(_, BiLe, _, _) |
|
|
|
|
ExprBinary(_, BiGe, _, _) | ExprBinary(_, BiGt, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.ord_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-08-27 18:26:35 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprBinary(_, BiEq, _, _) | ExprBinary(_, BiNe, _, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.eq_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-08-27 18:26:35 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprUnary(_, UnNeg, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.neg_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprUnary(_, UnNot, _) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.not_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2013-01-11 11:16:58 -06:00
|
|
|
}
|
2013-09-01 20:45:37 -05:00
|
|
|
ExprIndex(*) => {
|
2013-09-26 21:10:16 -05:00
|
|
|
let i = self.lang_items.index_trait();
|
|
|
|
self.add_fixed_trait_for_expr(expr.id, i);
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
|
|
|
_ => {
|
2012-07-11 17:00:40 -05:00
|
|
|
// Nothing to do.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn search_for_traits_containing_method(&mut self, name: Ident)
|
2013-09-01 20:45:37 -05:00
|
|
|
-> ~[DefId] {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(searching for traits containing method) looking for '{}'",
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(name));
|
2012-10-08 14:39:30 -05:00
|
|
|
|
2013-03-07 17:37:14 -06:00
|
|
|
let mut found_traits = ~[];
|
2012-07-11 17:00:40 -05:00
|
|
|
let mut search_module = self.current_module;
|
2013-06-26 17:56:13 -05:00
|
|
|
match self.method_map.find(&name.name) {
|
2013-05-20 11:41:20 -05:00
|
|
|
Some(candidate_traits) => loop {
|
|
|
|
// Look for the current trait.
|
2013-07-02 14:47:32 -05:00
|
|
|
match self.current_trait_refs {
|
|
|
|
Some(ref trait_def_ids) => {
|
2013-08-03 11:45:23 -05:00
|
|
|
for trait_def_id in trait_def_ids.iter() {
|
2013-05-20 11:41:20 -05:00
|
|
|
if candidate_traits.contains(trait_def_id) {
|
2013-07-02 14:47:32 -05:00
|
|
|
self.add_trait_info(&mut found_traits,
|
|
|
|
*trait_def_id,
|
|
|
|
name);
|
2012-08-17 19:55:34 -05:00
|
|
|
}
|
|
|
|
}
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-05-20 11:41:20 -05:00
|
|
|
// Nothing to do.
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-20 11:41:20 -05:00
|
|
|
// Look for trait children.
|
2013-08-21 20:39:30 -05:00
|
|
|
self.populate_module_if_necessary(search_module);
|
|
|
|
for (_, &child_name_bindings) in
|
|
|
|
search_module.children.iter() {
|
2013-05-20 11:41:20 -05:00
|
|
|
match child_name_bindings.def_for_namespace(TypeNS) {
|
|
|
|
Some(def) => {
|
|
|
|
match def {
|
2013-09-01 20:45:37 -05:00
|
|
|
DefTrait(trait_def_id) => {
|
2013-05-20 11:41:20 -05:00
|
|
|
if candidate_traits.contains(&trait_def_id) {
|
|
|
|
self.add_trait_info(
|
2013-03-07 17:37:14 -06:00
|
|
|
&mut found_traits,
|
|
|
|
trait_def_id, name);
|
2012-08-17 19:55:34 -05:00
|
|
|
}
|
|
|
|
}
|
2013-05-20 11:41:20 -05:00
|
|
|
_ => {
|
|
|
|
// Continue.
|
|
|
|
}
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
}
|
2013-05-20 11:41:20 -05:00
|
|
|
None => {
|
|
|
|
// Continue.
|
|
|
|
}
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-20 11:41:20 -05:00
|
|
|
// Look for imports.
|
2013-08-03 11:45:23 -05:00
|
|
|
for (_, &import_resolution) in search_module.import_resolutions.iter() {
|
2013-05-20 11:41:20 -05:00
|
|
|
match import_resolution.target_for_namespace(TypeNS) {
|
|
|
|
None => {
|
|
|
|
// Continue.
|
|
|
|
}
|
|
|
|
Some(target) => {
|
|
|
|
match target.bindings.def_for_namespace(TypeNS) {
|
|
|
|
Some(def) => {
|
|
|
|
match def {
|
2013-09-01 20:45:37 -05:00
|
|
|
DefTrait(trait_def_id) => {
|
2013-05-20 11:41:20 -05:00
|
|
|
if candidate_traits.contains(&trait_def_id) {
|
|
|
|
self.add_trait_info(
|
|
|
|
&mut found_traits,
|
|
|
|
trait_def_id, name);
|
|
|
|
self.used_imports.insert(
|
2013-06-09 23:39:15 -05:00
|
|
|
import_resolution.type_id);
|
2013-05-20 11:41:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
// Continue.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
// Continue.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
2013-05-20 11:41:20 -05:00
|
|
|
|
|
|
|
// Move to the next parent.
|
|
|
|
match search_module.parent_link {
|
|
|
|
NoParentLink => {
|
|
|
|
// Done.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ModuleParentLink(parent_module, _) |
|
|
|
|
BlockParentLink(parent_module, _) => {
|
|
|
|
search_module = parent_module;
|
|
|
|
}
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
2013-05-20 11:41:20 -05:00
|
|
|
},
|
|
|
|
_ => ()
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return found_traits;
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn add_trait_info(&self,
|
2013-09-01 20:45:37 -05:00
|
|
|
found_traits: &mut ~[DefId],
|
|
|
|
trait_def_id: DefId,
|
2013-09-01 19:50:59 -05:00
|
|
|
name: Ident) {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(adding trait info) found trait {}:{} for method '{}'",
|
2012-10-08 14:39:30 -05:00
|
|
|
trait_def_id.crate,
|
|
|
|
trait_def_id.node,
|
2013-06-12 12:02:55 -05:00
|
|
|
self.session.str_of(name));
|
2013-05-20 11:41:20 -05:00
|
|
|
found_traits.push(trait_def_id);
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn add_fixed_trait_for_expr(&mut self,
|
2013-07-27 03:25:59 -05:00
|
|
|
expr_id: NodeId,
|
2013-09-01 20:45:37 -05:00
|
|
|
trait_id: Option<DefId>) {
|
2013-07-15 22:42:13 -05:00
|
|
|
match trait_id {
|
|
|
|
Some(trait_id) => {
|
|
|
|
self.trait_map.insert(expr_id, @mut ~[trait_id]);
|
|
|
|
}
|
|
|
|
None => {}
|
|
|
|
}
|
2012-07-27 21:32:42 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn record_def(&mut self, node_id: NodeId, def: Def) {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("(recording def) recording {:?} for {:?}", def, node_id);
|
2013-09-06 21:11:55 -05:00
|
|
|
do self.def_map.insert_or_update_with(node_id, def) |_, old_value| {
|
|
|
|
// Resolve appears to "resolve" the same ID multiple
|
|
|
|
// times, so here is a sanity check it at least comes to
|
|
|
|
// the same conclusion! - nmatsakis
|
|
|
|
if def != *old_value {
|
2013-09-28 00:38:08 -05:00
|
|
|
self.session.bug(format!("node_id {:?} resolved first to {:?} \
|
|
|
|
and then {:?}", node_id, *old_value, def));
|
2013-09-06 21:11:55 -05:00
|
|
|
}
|
|
|
|
};
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn enforce_default_binding_mode(&mut self,
|
2013-09-30 12:37:17 -05:00
|
|
|
pat: &Pat,
|
2013-09-01 20:45:37 -05:00
|
|
|
pat_binding_mode: BindingMode,
|
2013-05-31 17:17:22 -05:00
|
|
|
descr: &str) {
|
2013-01-24 18:24:45 -06:00
|
|
|
match pat_binding_mode {
|
2013-09-01 20:45:37 -05:00
|
|
|
BindInfer => {}
|
|
|
|
BindByRef(*) => {
|
2013-08-13 19:54:14 -05:00
|
|
|
self.resolve_error(
|
2013-01-24 18:24:45 -06:00
|
|
|
pat.span,
|
2013-09-28 00:38:08 -05:00
|
|
|
format!("cannot use `ref` binding mode with {}",
|
2013-01-24 18:24:45 -06:00
|
|
|
descr));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-06 21:06:58 -05:00
|
|
|
//
|
|
|
|
// Unused import checking
|
|
|
|
//
|
|
|
|
// Although this is a lint pass, it lives in here because it depends on
|
|
|
|
// resolve data structures.
|
|
|
|
//
|
|
|
|
|
2013-09-27 21:46:09 -05:00
|
|
|
pub fn check_for_unused_imports(&self, crate: &ast::Crate) {
|
2013-08-13 11:52:41 -05:00
|
|
|
let mut visitor = UnusedImportCheckVisitor{ resolver: self };
|
2013-09-27 21:46:09 -05:00
|
|
|
visit::walk_crate(&mut visitor, crate, ());
|
2013-02-25 11:12:22 -06:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn check_for_item_unused_imports(&self, vi: &view_item) {
|
2013-04-30 00:15:17 -05:00
|
|
|
// Ignore public import statements because there's no way to be sure
|
|
|
|
// whether they're used or not. Also ignore imports with a dummy span
|
|
|
|
// because this means that they were generated in some fashion by the
|
|
|
|
// compiler and we don't need to consider them.
|
|
|
|
if vi.vis == public { return }
|
|
|
|
if vi.span == dummy_sp() { return }
|
|
|
|
|
|
|
|
match vi.node {
|
|
|
|
view_item_extern_mod(*) => {} // ignore
|
|
|
|
view_item_use(ref path) => {
|
2013-08-03 11:45:23 -05:00
|
|
|
for p in path.iter() {
|
2013-04-30 00:15:17 -05:00
|
|
|
match p.node {
|
|
|
|
view_path_simple(_, _, id) | view_path_glob(_, id) => {
|
|
|
|
if !self.used_imports.contains(&id) {
|
|
|
|
self.session.add_lint(unused_imports,
|
2013-05-21 05:09:22 -05:00
|
|
|
id, p.span,
|
2013-04-30 00:15:17 -05:00
|
|
|
~"unused import");
|
|
|
|
}
|
|
|
|
}
|
2012-07-06 21:06:58 -05:00
|
|
|
|
2013-04-30 00:15:17 -05:00
|
|
|
view_path_list(_, ref list, _) => {
|
2013-08-03 11:45:23 -05:00
|
|
|
for i in list.iter() {
|
2013-04-30 00:15:17 -05:00
|
|
|
if !self.used_imports.contains(&i.node.id) {
|
|
|
|
self.session.add_lint(unused_imports,
|
|
|
|
i.node.id, i.span,
|
|
|
|
~"unused import");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-07-06 21:06:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-22 12:54:12 -05:00
|
|
|
//
|
|
|
|
// Diagnostics
|
|
|
|
//
|
|
|
|
// Diagnostics are not particularly efficient, because they're rarely
|
|
|
|
// hit.
|
|
|
|
//
|
|
|
|
|
2012-12-29 12:25:09 -06:00
|
|
|
/// A somewhat inefficient routine to obtain the name of a module.
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn module_to_str(&mut self, module_: @mut Module) -> ~str {
|
2013-03-07 17:37:14 -06:00
|
|
|
let mut idents = ~[];
|
2012-07-31 18:38:41 -05:00
|
|
|
let mut current_module = module_;
|
2012-05-22 12:54:12 -05:00
|
|
|
loop {
|
2012-08-06 14:34:08 -05:00
|
|
|
match current_module.parent_link {
|
2012-08-03 21:59:04 -05:00
|
|
|
NoParentLink => {
|
2012-05-22 12:54:12 -05:00
|
|
|
break;
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
ModuleParentLink(module_, name) => {
|
2012-09-19 20:52:49 -05:00
|
|
|
idents.push(name);
|
2012-07-31 18:38:41 -05:00
|
|
|
current_module = module_;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2012-08-26 14:12:05 -05:00
|
|
|
BlockParentLink(module_, _) => {
|
2012-12-23 16:41:37 -06:00
|
|
|
idents.push(special_idents::opaque);
|
2012-07-31 18:38:41 -05:00
|
|
|
current_module = module_;
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-29 14:08:40 -06:00
|
|
|
if idents.len() == 0 {
|
2012-08-01 19:30:05 -05:00
|
|
|
return ~"???";
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-09-01 19:50:59 -05:00
|
|
|
return self.idents_to_str(idents.move_rev_iter().collect::<~[ast::Ident]>());
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-26 21:10:16 -05:00
|
|
|
pub fn dump_module(&mut self, module_: @mut Module) {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("Dump of module `{}`:", self.module_to_str(module_));
|
2012-05-22 12:54:12 -05:00
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("Children:");
|
2013-08-21 20:39:30 -05:00
|
|
|
self.populate_module_if_necessary(module_);
|
2013-08-03 11:45:23 -05:00
|
|
|
for (&name, _) in module_.children.iter() {
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("* {}", interner_get(name));
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("Import resolutions:");
|
2013-08-03 11:45:23 -05:00
|
|
|
for (name, import_resolution) in module_.import_resolutions.iter() {
|
2013-04-30 15:35:01 -05:00
|
|
|
let value_repr;
|
2013-03-21 03:10:57 -05:00
|
|
|
match import_resolution.target_for_namespace(ValueNS) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => { value_repr = ~""; }
|
2012-08-26 14:12:05 -05:00
|
|
|
Some(_) => {
|
2012-07-14 00:57:48 -05:00
|
|
|
value_repr = ~" value:?";
|
2013-02-14 20:37:25 -06:00
|
|
|
// FIXME #4954
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-30 15:35:01 -05:00
|
|
|
let type_repr;
|
2013-03-21 03:10:57 -05:00
|
|
|
match import_resolution.target_for_namespace(TypeNS) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => { type_repr = ~""; }
|
2012-08-26 14:12:05 -05:00
|
|
|
Some(_) => {
|
2012-07-14 00:57:48 -05:00
|
|
|
type_repr = ~" type:?";
|
2013-02-14 20:37:25 -06:00
|
|
|
// FIXME #4954
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-28 00:38:08 -05:00
|
|
|
debug2!("* {}:{}{}", interner_get(*name),
|
2012-10-15 16:56:42 -05:00
|
|
|
value_repr, type_repr);
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-19 01:40:42 -06:00
|
|
|
pub struct CrateMap {
|
|
|
|
def_map: DefMap,
|
|
|
|
exp_map2: ExportMap2,
|
|
|
|
trait_map: TraitMap
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Entry point to crate resolution.
|
2013-01-30 15:44:24 -06:00
|
|
|
pub fn resolve_crate(session: Session,
|
|
|
|
lang_items: LanguageItems,
|
2013-09-27 21:46:09 -05:00
|
|
|
crate: &Crate)
|
2013-02-19 01:40:42 -06:00
|
|
|
-> CrateMap {
|
2013-09-27 21:46:09 -05:00
|
|
|
let mut resolver = Resolver(session, lang_items, crate.span);
|
|
|
|
resolver.resolve(crate);
|
2013-02-19 01:40:42 -06:00
|
|
|
CrateMap {
|
2013-07-02 14:47:32 -05:00
|
|
|
def_map: resolver.def_map,
|
|
|
|
exp_map2: resolver.export_map2,
|
|
|
|
trait_map: resolver.trait_map.clone(),
|
2013-02-19 01:40:42 -06:00
|
|
|
}
|
2012-05-22 12:54:12 -05:00
|
|
|
}
|
2013-06-05 21:49:41 -05:00
|
|
|
|