Auto merge of #35127 - Manishearth:rollup, r=Manishearth
Rollup of 8 pull requests - Successful merges: #35049, #35058, #35063, #35080, #35090, #35094, #35104, #35106 - Failed merges:
This commit is contained in:
commit
ffcbd2deb5
@ -203,19 +203,22 @@ impl<T> LinkedList<T> {
|
||||
/// ```
|
||||
/// use std::collections::LinkedList;
|
||||
///
|
||||
/// let mut a = LinkedList::new();
|
||||
/// let mut b = LinkedList::new();
|
||||
/// a.push_back(1);
|
||||
/// a.push_back(2);
|
||||
/// b.push_back(3);
|
||||
/// b.push_back(4);
|
||||
/// let mut list1 = LinkedList::new();
|
||||
/// list1.push_back('a');
|
||||
///
|
||||
/// a.append(&mut b);
|
||||
/// let mut list2 = LinkedList::new();
|
||||
/// list2.push_back('b');
|
||||
/// list2.push_back('c');
|
||||
///
|
||||
/// for e in &a {
|
||||
/// println!("{}", e); // prints 1, then 2, then 3, then 4
|
||||
/// }
|
||||
/// println!("{}", b.len()); // prints 0
|
||||
/// list1.append(&mut list2);
|
||||
///
|
||||
/// let mut iter = list1.iter();
|
||||
/// assert_eq!(iter.next(), Some(&'a'));
|
||||
/// assert_eq!(iter.next(), Some(&'b'));
|
||||
/// assert_eq!(iter.next(), Some(&'c'));
|
||||
/// assert!(iter.next().is_none());
|
||||
///
|
||||
/// assert!(list2.is_empty());
|
||||
/// ```
|
||||
#[stable(feature = "rust1", since = "1.0.0")]
|
||||
pub fn append(&mut self, other: &mut Self) {
|
||||
|
@ -192,6 +192,17 @@ fn test_push_str() {
|
||||
assert_eq!(&s[0..], "abcประเทศไทย中华Việt Nam");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_add_assign() {
|
||||
let mut s = String::new();
|
||||
s += "";
|
||||
assert_eq!(s.as_str(), "");
|
||||
s += "abc";
|
||||
assert_eq!(s.as_str(), "abc");
|
||||
s += "ประเทศไทย中华Việt Nam";
|
||||
assert_eq!(s.as_str(), "abcประเทศไทย中华Việt Nam");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_push() {
|
||||
let mut data = String::from("ประเทศไทย中");
|
||||
|
@ -611,6 +611,31 @@ macro_rules! int_impl {
|
||||
if b {None} else {Some(a)}
|
||||
}
|
||||
|
||||
/// Checked absolute value. Computes `self.abs()`, returning `None` if
|
||||
/// `self == MIN`.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
/// Basic usage:
|
||||
///
|
||||
/// ```
|
||||
/// # #![feature(no_panic_abs)]
|
||||
///
|
||||
/// use std::i32;
|
||||
///
|
||||
/// assert_eq!((-5i32).checked_abs(), Some(5));
|
||||
/// assert_eq!(i32::MIN.checked_abs(), None);
|
||||
/// ```
|
||||
#[unstable(feature = "no_panic_abs", issue = "35057")]
|
||||
#[inline]
|
||||
pub fn checked_abs(self) -> Option<Self> {
|
||||
if self.is_negative() {
|
||||
self.checked_neg()
|
||||
} else {
|
||||
Some(self)
|
||||
}
|
||||
}
|
||||
|
||||
/// Saturating integer addition. Computes `self + other`, saturating at
|
||||
/// the numeric bounds instead of overflowing.
|
||||
///
|
||||
@ -863,6 +888,36 @@ macro_rules! int_impl {
|
||||
self.overflowing_shr(rhs).0
|
||||
}
|
||||
|
||||
/// Wrapping (modular) absolute value. Computes `self.abs()`,
|
||||
/// wrapping around at the boundary of the type.
|
||||
///
|
||||
/// The only case where such wrapping can occur is when one takes
|
||||
/// the absolute value of the negative minimal value for the type
|
||||
/// this is a positive value that is too large to represent in the
|
||||
/// type. In such a case, this function returns `MIN` itself.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
/// Basic usage:
|
||||
///
|
||||
/// ```
|
||||
/// # #![feature(no_panic_abs)]
|
||||
///
|
||||
/// assert_eq!(100i8.wrapping_abs(), 100);
|
||||
/// assert_eq!((-100i8).wrapping_abs(), 100);
|
||||
/// assert_eq!((-128i8).wrapping_abs(), -128);
|
||||
/// assert_eq!((-128i8).wrapping_abs() as u8, 128);
|
||||
/// ```
|
||||
#[unstable(feature = "no_panic_abs", issue = "35057")]
|
||||
#[inline(always)]
|
||||
pub fn wrapping_abs(self) -> Self {
|
||||
if self.is_negative() {
|
||||
self.wrapping_neg()
|
||||
} else {
|
||||
self
|
||||
}
|
||||
}
|
||||
|
||||
/// Calculates `self` + `rhs`
|
||||
///
|
||||
/// Returns a tuple of the addition along with a boolean indicating
|
||||
@ -1071,6 +1126,35 @@ macro_rules! int_impl {
|
||||
(self >> (rhs & ($BITS - 1)), (rhs > ($BITS - 1)))
|
||||
}
|
||||
|
||||
/// Computes the absolute value of `self`.
|
||||
///
|
||||
/// Returns a tuple of the absolute version of self along with a
|
||||
/// boolean indicating whether an overflow happened. If self is the
|
||||
/// minimum value (e.g. i32::MIN for values of type i32), then the
|
||||
/// minimum value will be returned again and true will be returned for
|
||||
/// an overflow happening.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
/// Basic usage:
|
||||
///
|
||||
/// ```
|
||||
/// # #![feature(no_panic_abs)]
|
||||
///
|
||||
/// assert_eq!(10i8.overflowing_abs(), (10,false));
|
||||
/// assert_eq!((-10i8).overflowing_abs(), (10,false));
|
||||
/// assert_eq!((-128i8).overflowing_abs(), (-128,true));
|
||||
/// ```
|
||||
#[unstable(feature = "no_panic_abs", issue = "35057")]
|
||||
#[inline]
|
||||
pub fn overflowing_abs(self) -> (Self, bool) {
|
||||
if self.is_negative() {
|
||||
self.overflowing_neg()
|
||||
} else {
|
||||
(self, false)
|
||||
}
|
||||
}
|
||||
|
||||
/// Raises self to the power of `exp`, using exponentiation by squaring.
|
||||
///
|
||||
/// # Examples
|
||||
|
@ -94,11 +94,14 @@ pub trait Visitor<'v> : Sized {
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
fn visit_id(&mut self, _node_id: NodeId) {
|
||||
// Nothing to do.
|
||||
}
|
||||
fn visit_name(&mut self, _span: Span, _name: Name) {
|
||||
// Nothing to do.
|
||||
}
|
||||
fn visit_mod(&mut self, m: &'v Mod, _s: Span, _n: NodeId) {
|
||||
walk_mod(self, m)
|
||||
fn visit_mod(&mut self, m: &'v Mod, _s: Span, n: NodeId) {
|
||||
walk_mod(self, m, n)
|
||||
}
|
||||
fn visit_foreign_item(&mut self, i: &'v ForeignItem) {
|
||||
walk_foreign_item(self, i)
|
||||
@ -135,8 +138,8 @@ pub trait Visitor<'v> : Sized {
|
||||
fn visit_where_predicate(&mut self, predicate: &'v WherePredicate) {
|
||||
walk_where_predicate(self, predicate)
|
||||
}
|
||||
fn visit_fn(&mut self, fk: FnKind<'v>, fd: &'v FnDecl, b: &'v Block, s: Span, _: NodeId) {
|
||||
walk_fn(self, fk, fd, b, s)
|
||||
fn visit_fn(&mut self, fk: FnKind<'v>, fd: &'v FnDecl, b: &'v Block, s: Span, id: NodeId) {
|
||||
walk_fn(self, fk, fd, b, s, id)
|
||||
}
|
||||
fn visit_trait_item(&mut self, ti: &'v TraitItem) {
|
||||
walk_trait_item(self, ti)
|
||||
@ -157,7 +160,7 @@ pub trait Visitor<'v> : Sized {
|
||||
s: &'v VariantData,
|
||||
_: Name,
|
||||
_: &'v Generics,
|
||||
_: NodeId,
|
||||
_parent_id: NodeId,
|
||||
_: Span) {
|
||||
walk_struct_def(self, s)
|
||||
}
|
||||
@ -225,24 +228,28 @@ pub fn walk_crate<'v, V: Visitor<'v>>(visitor: &mut V, krate: &'v Crate) {
|
||||
}
|
||||
|
||||
pub fn walk_macro_def<'v, V: Visitor<'v>>(visitor: &mut V, macro_def: &'v MacroDef) {
|
||||
visitor.visit_id(macro_def.id);
|
||||
visitor.visit_name(macro_def.span, macro_def.name);
|
||||
walk_opt_name(visitor, macro_def.span, macro_def.imported_from);
|
||||
walk_list!(visitor, visit_attribute, ¯o_def.attrs);
|
||||
}
|
||||
|
||||
pub fn walk_mod<'v, V: Visitor<'v>>(visitor: &mut V, module: &'v Mod) {
|
||||
pub fn walk_mod<'v, V: Visitor<'v>>(visitor: &mut V, module: &'v Mod, mod_node_id: NodeId) {
|
||||
visitor.visit_id(mod_node_id);
|
||||
for &item_id in &module.item_ids {
|
||||
visitor.visit_nested_item(item_id);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn walk_local<'v, V: Visitor<'v>>(visitor: &mut V, local: &'v Local) {
|
||||
visitor.visit_id(local.id);
|
||||
visitor.visit_pat(&local.pat);
|
||||
walk_list!(visitor, visit_ty, &local.ty);
|
||||
walk_list!(visitor, visit_expr, &local.init);
|
||||
}
|
||||
|
||||
pub fn walk_lifetime<'v, V: Visitor<'v>>(visitor: &mut V, lifetime: &'v Lifetime) {
|
||||
visitor.visit_id(lifetime.id);
|
||||
visitor.visit_name(lifetime.span, lifetime.name);
|
||||
}
|
||||
|
||||
@ -263,6 +270,7 @@ pub fn walk_poly_trait_ref<'v, V>(visitor: &mut V,
|
||||
pub fn walk_trait_ref<'v, V>(visitor: &mut V, trait_ref: &'v TraitRef)
|
||||
where V: Visitor<'v>
|
||||
{
|
||||
visitor.visit_id(trait_ref.ref_id);
|
||||
visitor.visit_path(&trait_ref.path, trait_ref.ref_id)
|
||||
}
|
||||
|
||||
@ -271,9 +279,11 @@ pub fn walk_item<'v, V: Visitor<'v>>(visitor: &mut V, item: &'v Item) {
|
||||
visitor.visit_name(item.span, item.name);
|
||||
match item.node {
|
||||
ItemExternCrate(opt_name) => {
|
||||
visitor.visit_id(item.id);
|
||||
walk_opt_name(visitor, item.span, opt_name)
|
||||
}
|
||||
ItemUse(ref vp) => {
|
||||
visitor.visit_id(item.id);
|
||||
match vp.node {
|
||||
ViewPathSimple(name, ref path) => {
|
||||
visitor.visit_name(vp.span, name);
|
||||
@ -292,6 +302,7 @@ pub fn walk_item<'v, V: Visitor<'v>>(visitor: &mut V, item: &'v Item) {
|
||||
}
|
||||
ItemStatic(ref typ, _, ref expr) |
|
||||
ItemConst(ref typ, ref expr) => {
|
||||
visitor.visit_id(item.id);
|
||||
visitor.visit_ty(typ);
|
||||
visitor.visit_expr(expr);
|
||||
}
|
||||
@ -309,23 +320,29 @@ pub fn walk_item<'v, V: Visitor<'v>>(visitor: &mut V, item: &'v Item) {
|
||||
item.id)
|
||||
}
|
||||
ItemMod(ref module) => {
|
||||
// visit_mod() takes care of visiting the Item's NodeId
|
||||
visitor.visit_mod(module, item.span, item.id)
|
||||
}
|
||||
ItemForeignMod(ref foreign_module) => {
|
||||
visitor.visit_id(item.id);
|
||||
walk_list!(visitor, visit_foreign_item, &foreign_module.items);
|
||||
}
|
||||
ItemTy(ref typ, ref type_parameters) => {
|
||||
visitor.visit_id(item.id);
|
||||
visitor.visit_ty(typ);
|
||||
visitor.visit_generics(type_parameters)
|
||||
}
|
||||
ItemEnum(ref enum_definition, ref type_parameters) => {
|
||||
visitor.visit_generics(type_parameters);
|
||||
// visit_enum_def() takes care of visiting the Item's NodeId
|
||||
visitor.visit_enum_def(enum_definition, type_parameters, item.id, item.span)
|
||||
}
|
||||
ItemDefaultImpl(_, ref trait_ref) => {
|
||||
visitor.visit_id(item.id);
|
||||
visitor.visit_trait_ref(trait_ref)
|
||||
}
|
||||
ItemImpl(_, _, ref type_parameters, ref opt_trait_reference, ref typ, ref impl_items) => {
|
||||
visitor.visit_id(item.id);
|
||||
visitor.visit_generics(type_parameters);
|
||||
walk_list!(visitor, visit_trait_ref, opt_trait_reference);
|
||||
visitor.visit_ty(typ);
|
||||
@ -333,9 +350,11 @@ pub fn walk_item<'v, V: Visitor<'v>>(visitor: &mut V, item: &'v Item) {
|
||||
}
|
||||
ItemStruct(ref struct_definition, ref generics) => {
|
||||
visitor.visit_generics(generics);
|
||||
visitor.visit_id(item.id);
|
||||
visitor.visit_variant_data(struct_definition, item.name, generics, item.id, item.span);
|
||||
}
|
||||
ItemTrait(_, ref generics, ref bounds, ref methods) => {
|
||||
visitor.visit_id(item.id);
|
||||
visitor.visit_generics(generics);
|
||||
walk_list!(visitor, visit_ty_param_bound, bounds);
|
||||
walk_list!(visitor, visit_trait_item, methods);
|
||||
@ -348,6 +367,7 @@ pub fn walk_enum_def<'v, V: Visitor<'v>>(visitor: &mut V,
|
||||
enum_definition: &'v EnumDef,
|
||||
generics: &'v Generics,
|
||||
item_id: NodeId) {
|
||||
visitor.visit_id(item_id);
|
||||
walk_list!(visitor,
|
||||
visit_variant,
|
||||
&enum_definition.variants,
|
||||
@ -358,18 +378,20 @@ pub fn walk_enum_def<'v, V: Visitor<'v>>(visitor: &mut V,
|
||||
pub fn walk_variant<'v, V: Visitor<'v>>(visitor: &mut V,
|
||||
variant: &'v Variant,
|
||||
generics: &'v Generics,
|
||||
item_id: NodeId) {
|
||||
parent_item_id: NodeId) {
|
||||
visitor.visit_name(variant.span, variant.node.name);
|
||||
visitor.visit_variant_data(&variant.node.data,
|
||||
variant.node.name,
|
||||
generics,
|
||||
item_id,
|
||||
parent_item_id,
|
||||
variant.span);
|
||||
walk_list!(visitor, visit_expr, &variant.node.disr_expr);
|
||||
walk_list!(visitor, visit_attribute, &variant.node.attrs);
|
||||
}
|
||||
|
||||
pub fn walk_ty<'v, V: Visitor<'v>>(visitor: &mut V, typ: &'v Ty) {
|
||||
visitor.visit_id(typ.id);
|
||||
|
||||
match typ.node {
|
||||
TyVec(ref ty) => {
|
||||
visitor.visit_ty(ty)
|
||||
@ -421,6 +443,7 @@ pub fn walk_path<'v, V: Visitor<'v>>(visitor: &mut V, path: &'v Path) {
|
||||
pub fn walk_path_list_item<'v, V: Visitor<'v>>(visitor: &mut V,
|
||||
_prefix: &'v Path,
|
||||
item: &'v PathListItem) {
|
||||
visitor.visit_id(item.node.id());
|
||||
walk_opt_name(visitor, item.span, item.node.name());
|
||||
walk_opt_name(visitor, item.span, item.node.rename());
|
||||
}
|
||||
@ -450,11 +473,13 @@ pub fn walk_path_parameters<'v, V: Visitor<'v>>(visitor: &mut V,
|
||||
|
||||
pub fn walk_assoc_type_binding<'v, V: Visitor<'v>>(visitor: &mut V,
|
||||
type_binding: &'v TypeBinding) {
|
||||
visitor.visit_id(type_binding.id);
|
||||
visitor.visit_name(type_binding.span, type_binding.name);
|
||||
visitor.visit_ty(&type_binding.ty);
|
||||
}
|
||||
|
||||
pub fn walk_pat<'v, V: Visitor<'v>>(visitor: &mut V, pattern: &'v Pat) {
|
||||
visitor.visit_id(pattern.id);
|
||||
match pattern.node {
|
||||
PatKind::TupleStruct(ref path, ref children, _) => {
|
||||
visitor.visit_path(path, pattern.id);
|
||||
@ -499,6 +524,7 @@ pub fn walk_pat<'v, V: Visitor<'v>>(visitor: &mut V, pattern: &'v Pat) {
|
||||
}
|
||||
|
||||
pub fn walk_foreign_item<'v, V: Visitor<'v>>(visitor: &mut V, foreign_item: &'v ForeignItem) {
|
||||
visitor.visit_id(foreign_item.id);
|
||||
visitor.visit_vis(&foreign_item.vis);
|
||||
visitor.visit_name(foreign_item.span, foreign_item.name);
|
||||
|
||||
@ -526,11 +552,13 @@ pub fn walk_ty_param_bound<'v, V: Visitor<'v>>(visitor: &mut V, bound: &'v TyPar
|
||||
|
||||
pub fn walk_generics<'v, V: Visitor<'v>>(visitor: &mut V, generics: &'v Generics) {
|
||||
for param in &generics.ty_params {
|
||||
visitor.visit_id(param.id);
|
||||
visitor.visit_name(param.span, param.name);
|
||||
walk_list!(visitor, visit_ty_param_bound, ¶m.bounds);
|
||||
walk_list!(visitor, visit_ty, ¶m.default);
|
||||
}
|
||||
walk_list!(visitor, visit_lifetime_def, &generics.lifetimes);
|
||||
visitor.visit_id(generics.where_clause.id);
|
||||
walk_list!(visitor, visit_where_predicate, &generics.where_clause.predicates);
|
||||
}
|
||||
|
||||
@ -557,6 +585,7 @@ pub fn walk_where_predicate<'v, V: Visitor<'v>>(
|
||||
ref path,
|
||||
ref ty,
|
||||
..}) => {
|
||||
visitor.visit_id(id);
|
||||
visitor.visit_path(path, id);
|
||||
visitor.visit_ty(ty);
|
||||
}
|
||||
@ -571,6 +600,7 @@ pub fn walk_fn_ret_ty<'v, V: Visitor<'v>>(visitor: &mut V, ret_ty: &'v FunctionR
|
||||
|
||||
pub fn walk_fn_decl<'v, V: Visitor<'v>>(visitor: &mut V, function_declaration: &'v FnDecl) {
|
||||
for argument in &function_declaration.inputs {
|
||||
visitor.visit_id(argument.id);
|
||||
visitor.visit_pat(&argument.pat);
|
||||
visitor.visit_ty(&argument.ty)
|
||||
}
|
||||
@ -579,6 +609,7 @@ pub fn walk_fn_decl<'v, V: Visitor<'v>>(visitor: &mut V, function_declaration: &
|
||||
|
||||
pub fn walk_fn_decl_nopat<'v, V: Visitor<'v>>(visitor: &mut V, function_declaration: &'v FnDecl) {
|
||||
for argument in &function_declaration.inputs {
|
||||
visitor.visit_id(argument.id);
|
||||
visitor.visit_ty(&argument.ty)
|
||||
}
|
||||
walk_fn_ret_ty(visitor, &function_declaration.output)
|
||||
@ -600,7 +631,9 @@ pub fn walk_fn<'v, V: Visitor<'v>>(visitor: &mut V,
|
||||
function_kind: FnKind<'v>,
|
||||
function_declaration: &'v FnDecl,
|
||||
function_body: &'v Block,
|
||||
_span: Span) {
|
||||
_span: Span,
|
||||
id: NodeId) {
|
||||
visitor.visit_id(id);
|
||||
walk_fn_decl(visitor, function_declaration);
|
||||
walk_fn_kind(visitor, function_kind);
|
||||
visitor.visit_block(function_body)
|
||||
@ -611,10 +644,12 @@ pub fn walk_trait_item<'v, V: Visitor<'v>>(visitor: &mut V, trait_item: &'v Trai
|
||||
walk_list!(visitor, visit_attribute, &trait_item.attrs);
|
||||
match trait_item.node {
|
||||
ConstTraitItem(ref ty, ref default) => {
|
||||
visitor.visit_id(trait_item.id);
|
||||
visitor.visit_ty(ty);
|
||||
walk_list!(visitor, visit_expr, default);
|
||||
}
|
||||
MethodTraitItem(ref sig, None) => {
|
||||
visitor.visit_id(trait_item.id);
|
||||
visitor.visit_generics(&sig.generics);
|
||||
walk_fn_decl(visitor, &sig.decl);
|
||||
}
|
||||
@ -629,6 +664,7 @@ pub fn walk_trait_item<'v, V: Visitor<'v>>(visitor: &mut V, trait_item: &'v Trai
|
||||
trait_item.id);
|
||||
}
|
||||
TypeTraitItem(ref bounds, ref default) => {
|
||||
visitor.visit_id(trait_item.id);
|
||||
walk_list!(visitor, visit_ty_param_bound, bounds);
|
||||
walk_list!(visitor, visit_ty, default);
|
||||
}
|
||||
@ -641,6 +677,7 @@ pub fn walk_impl_item<'v, V: Visitor<'v>>(visitor: &mut V, impl_item: &'v ImplIt
|
||||
walk_list!(visitor, visit_attribute, &impl_item.attrs);
|
||||
match impl_item.node {
|
||||
ImplItemKind::Const(ref ty, ref expr) => {
|
||||
visitor.visit_id(impl_item.id);
|
||||
visitor.visit_ty(ty);
|
||||
visitor.visit_expr(expr);
|
||||
}
|
||||
@ -655,16 +692,19 @@ pub fn walk_impl_item<'v, V: Visitor<'v>>(visitor: &mut V, impl_item: &'v ImplIt
|
||||
impl_item.id);
|
||||
}
|
||||
ImplItemKind::Type(ref ty) => {
|
||||
visitor.visit_id(impl_item.id);
|
||||
visitor.visit_ty(ty);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn walk_struct_def<'v, V: Visitor<'v>>(visitor: &mut V, struct_definition: &'v VariantData) {
|
||||
visitor.visit_id(struct_definition.id());
|
||||
walk_list!(visitor, visit_struct_field, struct_definition.fields());
|
||||
}
|
||||
|
||||
pub fn walk_struct_field<'v, V: Visitor<'v>>(visitor: &mut V, struct_field: &'v StructField) {
|
||||
visitor.visit_id(struct_field.id);
|
||||
visitor.visit_vis(&struct_field.vis);
|
||||
visitor.visit_name(struct_field.span, struct_field.name);
|
||||
visitor.visit_ty(&struct_field.ty);
|
||||
@ -672,14 +712,20 @@ pub fn walk_struct_field<'v, V: Visitor<'v>>(visitor: &mut V, struct_field: &'v
|
||||
}
|
||||
|
||||
pub fn walk_block<'v, V: Visitor<'v>>(visitor: &mut V, block: &'v Block) {
|
||||
visitor.visit_id(block.id);
|
||||
walk_list!(visitor, visit_stmt, &block.stmts);
|
||||
walk_list!(visitor, visit_expr, &block.expr);
|
||||
}
|
||||
|
||||
pub fn walk_stmt<'v, V: Visitor<'v>>(visitor: &mut V, statement: &'v Stmt) {
|
||||
match statement.node {
|
||||
StmtDecl(ref declaration, _) => visitor.visit_decl(declaration),
|
||||
StmtExpr(ref expression, _) | StmtSemi(ref expression, _) => {
|
||||
StmtDecl(ref declaration, id) => {
|
||||
visitor.visit_id(id);
|
||||
visitor.visit_decl(declaration)
|
||||
}
|
||||
StmtExpr(ref expression, id) |
|
||||
StmtSemi(ref expression, id) => {
|
||||
visitor.visit_id(id);
|
||||
visitor.visit_expr(expression)
|
||||
}
|
||||
}
|
||||
@ -693,6 +739,7 @@ pub fn walk_decl<'v, V: Visitor<'v>>(visitor: &mut V, declaration: &'v Decl) {
|
||||
}
|
||||
|
||||
pub fn walk_expr<'v, V: Visitor<'v>>(visitor: &mut V, expression: &'v Expr) {
|
||||
visitor.visit_id(expression.id);
|
||||
match expression.node {
|
||||
ExprBox(ref subexpression) => {
|
||||
visitor.visit_expr(subexpression)
|
||||
@ -815,6 +862,7 @@ pub fn walk_arm<'v, V: Visitor<'v>>(visitor: &mut V, arm: &'v Arm) {
|
||||
|
||||
pub fn walk_vis<'v, V: Visitor<'v>>(visitor: &mut V, vis: &'v Visibility) {
|
||||
if let Visibility::Restricted { ref path, id } = *vis {
|
||||
visitor.visit_id(id);
|
||||
visitor.visit_path(path, id)
|
||||
}
|
||||
}
|
||||
@ -837,15 +885,16 @@ impl IdRange {
|
||||
self.min >= self.max
|
||||
}
|
||||
|
||||
pub fn contains(&self, id: NodeId) -> bool {
|
||||
id >= self.min && id < self.max
|
||||
}
|
||||
|
||||
pub fn add(&mut self, id: NodeId) {
|
||||
self.min = cmp::min(self.min, id);
|
||||
self.max = cmp::max(self.max, id + 1);
|
||||
}
|
||||
}
|
||||
|
||||
pub trait IdVisitingOperation {
|
||||
fn visit_id(&mut self, node_id: NodeId);
|
||||
}
|
||||
|
||||
pub struct IdRangeComputingVisitor {
|
||||
pub result: IdRange,
|
||||
@ -861,181 +910,12 @@ impl IdRangeComputingVisitor {
|
||||
}
|
||||
}
|
||||
|
||||
impl IdVisitingOperation for IdRangeComputingVisitor {
|
||||
impl<'v> Visitor<'v> for IdRangeComputingVisitor {
|
||||
fn visit_id(&mut self, id: NodeId) {
|
||||
self.result.add(id);
|
||||
}
|
||||
}
|
||||
|
||||
pub struct IdVisitor<'a, O: 'a> {
|
||||
operation: &'a mut O,
|
||||
|
||||
// In general, the id visitor visits the contents of an item, but
|
||||
// not including nested trait/impl items, nor other nested items.
|
||||
// The base visitor itself always skips nested items, but not
|
||||
// trait/impl items. This means in particular that if you start by
|
||||
// visiting a trait or an impl, you should not visit the
|
||||
// trait/impl items respectively. This is handled by setting
|
||||
// `skip_members` to true when `visit_item` is on the stack. This
|
||||
// way, if the user begins by calling `visit_trait_item`, we will
|
||||
// visit the trait item, but if they begin with `visit_item`, we
|
||||
// won't visit the (nested) trait items.
|
||||
skip_members: bool,
|
||||
}
|
||||
|
||||
impl<'a, O: IdVisitingOperation> IdVisitor<'a, O> {
|
||||
pub fn new(operation: &'a mut O) -> IdVisitor<'a, O> {
|
||||
IdVisitor { operation: operation, skip_members: false }
|
||||
}
|
||||
|
||||
fn visit_generics_helper(&mut self, generics: &Generics) {
|
||||
for type_parameter in generics.ty_params.iter() {
|
||||
self.operation.visit_id(type_parameter.id)
|
||||
}
|
||||
for lifetime in &generics.lifetimes {
|
||||
self.operation.visit_id(lifetime.lifetime.id)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a, 'v, O: IdVisitingOperation> Visitor<'v> for IdVisitor<'a, O> {
|
||||
fn visit_mod(&mut self, module: &Mod, _: Span, node_id: NodeId) {
|
||||
self.operation.visit_id(node_id);
|
||||
walk_mod(self, module)
|
||||
}
|
||||
|
||||
fn visit_foreign_item(&mut self, foreign_item: &ForeignItem) {
|
||||
self.operation.visit_id(foreign_item.id);
|
||||
walk_foreign_item(self, foreign_item)
|
||||
}
|
||||
|
||||
fn visit_item(&mut self, item: &Item) {
|
||||
assert!(!self.skip_members);
|
||||
self.skip_members = true;
|
||||
|
||||
self.operation.visit_id(item.id);
|
||||
match item.node {
|
||||
ItemUse(ref view_path) => {
|
||||
match view_path.node {
|
||||
ViewPathSimple(_, _) |
|
||||
ViewPathGlob(_) => {}
|
||||
ViewPathList(_, ref paths) => {
|
||||
for path in paths {
|
||||
self.operation.visit_id(path.node.id())
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
walk_item(self, item);
|
||||
|
||||
self.skip_members = false;
|
||||
}
|
||||
|
||||
fn visit_local(&mut self, local: &Local) {
|
||||
self.operation.visit_id(local.id);
|
||||
walk_local(self, local)
|
||||
}
|
||||
|
||||
fn visit_block(&mut self, block: &Block) {
|
||||
self.operation.visit_id(block.id);
|
||||
walk_block(self, block)
|
||||
}
|
||||
|
||||
fn visit_stmt(&mut self, statement: &Stmt) {
|
||||
self.operation.visit_id(statement.node.id());
|
||||
walk_stmt(self, statement)
|
||||
}
|
||||
|
||||
fn visit_pat(&mut self, pattern: &Pat) {
|
||||
self.operation.visit_id(pattern.id);
|
||||
walk_pat(self, pattern)
|
||||
}
|
||||
|
||||
fn visit_expr(&mut self, expression: &Expr) {
|
||||
self.operation.visit_id(expression.id);
|
||||
walk_expr(self, expression)
|
||||
}
|
||||
|
||||
fn visit_ty(&mut self, typ: &Ty) {
|
||||
self.operation.visit_id(typ.id);
|
||||
walk_ty(self, typ)
|
||||
}
|
||||
|
||||
fn visit_generics(&mut self, generics: &Generics) {
|
||||
self.visit_generics_helper(generics);
|
||||
walk_generics(self, generics)
|
||||
}
|
||||
|
||||
fn visit_fn(&mut self,
|
||||
function_kind: FnKind<'v>,
|
||||
function_declaration: &'v FnDecl,
|
||||
block: &'v Block,
|
||||
span: Span,
|
||||
node_id: NodeId) {
|
||||
self.operation.visit_id(node_id);
|
||||
|
||||
match function_kind {
|
||||
FnKind::ItemFn(_, generics, _, _, _, _, _) => {
|
||||
self.visit_generics_helper(generics)
|
||||
}
|
||||
FnKind::Method(_, sig, _, _) => {
|
||||
self.visit_generics_helper(&sig.generics)
|
||||
}
|
||||
FnKind::Closure(_) => {}
|
||||
}
|
||||
|
||||
for argument in &function_declaration.inputs {
|
||||
self.operation.visit_id(argument.id)
|
||||
}
|
||||
|
||||
walk_fn(self, function_kind, function_declaration, block, span);
|
||||
}
|
||||
|
||||
fn visit_struct_field(&mut self, struct_field: &StructField) {
|
||||
self.operation.visit_id(struct_field.id);
|
||||
walk_struct_field(self, struct_field)
|
||||
}
|
||||
|
||||
fn visit_variant_data(&mut self,
|
||||
struct_def: &VariantData,
|
||||
_: Name,
|
||||
_: &Generics,
|
||||
_: NodeId,
|
||||
_: Span) {
|
||||
self.operation.visit_id(struct_def.id());
|
||||
walk_struct_def(self, struct_def);
|
||||
}
|
||||
|
||||
fn visit_trait_item(&mut self, ti: &TraitItem) {
|
||||
if !self.skip_members {
|
||||
self.operation.visit_id(ti.id);
|
||||
walk_trait_item(self, ti);
|
||||
}
|
||||
}
|
||||
|
||||
fn visit_impl_item(&mut self, ii: &ImplItem) {
|
||||
if !self.skip_members {
|
||||
self.operation.visit_id(ii.id);
|
||||
walk_impl_item(self, ii);
|
||||
}
|
||||
}
|
||||
|
||||
fn visit_lifetime(&mut self, lifetime: &Lifetime) {
|
||||
self.operation.visit_id(lifetime.id);
|
||||
}
|
||||
|
||||
fn visit_lifetime_def(&mut self, def: &LifetimeDef) {
|
||||
self.visit_lifetime(&def.lifetime);
|
||||
}
|
||||
|
||||
fn visit_trait_ref(&mut self, trait_ref: &TraitRef) {
|
||||
self.operation.visit_id(trait_ref.ref_id);
|
||||
walk_trait_ref(self, trait_ref);
|
||||
}
|
||||
}
|
||||
|
||||
/// Computes the id range for a single fn body, ignoring nested items.
|
||||
pub fn compute_id_range_for_fn_body(fk: FnKind,
|
||||
decl: &FnDecl,
|
||||
@ -1043,8 +923,7 @@ pub fn compute_id_range_for_fn_body(fk: FnKind,
|
||||
sp: Span,
|
||||
id: NodeId)
|
||||
-> IdRange {
|
||||
let mut visitor = IdRangeComputingVisitor { result: IdRange::max() };
|
||||
let mut id_visitor = IdVisitor::new(&mut visitor);
|
||||
id_visitor.visit_fn(fk, decl, body, sp, id);
|
||||
id_visitor.operation.result
|
||||
let mut visitor = IdRangeComputingVisitor::new();
|
||||
visitor.visit_fn(fk, decl, body, sp, id);
|
||||
visitor.result()
|
||||
}
|
||||
|
@ -197,7 +197,7 @@ impl<'ast> Visitor<'ast> for NodeCollector<'ast> {
|
||||
fn visit_fn(&mut self, fk: intravisit::FnKind<'ast>, fd: &'ast FnDecl,
|
||||
b: &'ast Block, s: Span, id: NodeId) {
|
||||
assert_eq!(self.parent_node, id);
|
||||
intravisit::walk_fn(self, fk, fd, b, s);
|
||||
intravisit::walk_fn(self, fk, fd, b, s, id);
|
||||
}
|
||||
|
||||
fn visit_block(&mut self, block: &'ast Block) {
|
||||
|
@ -1362,9 +1362,9 @@ pub enum ViewPath_ {
|
||||
/// TraitRef's appear in impls.
|
||||
///
|
||||
/// resolve maps each TraitRef's ref_id to its defining trait; that's all
|
||||
/// that the ref_id is for. The impl_id maps to the "self type" of this impl.
|
||||
/// If this impl is an ItemImpl, the impl_id is redundant (it could be the
|
||||
/// same as the impl's node id).
|
||||
/// that the ref_id is for. Note that ref_id's value is not the NodeId of the
|
||||
/// trait being referred to but just a unique NodeId that serves as a key
|
||||
/// within the DefMap.
|
||||
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)]
|
||||
pub struct TraitRef {
|
||||
pub path: Path,
|
||||
|
@ -45,7 +45,6 @@ use syntax_pos::Span;
|
||||
use errors::DiagnosticBuilder;
|
||||
use hir;
|
||||
use hir::intravisit as hir_visit;
|
||||
use hir::intravisit::{IdVisitor, IdVisitingOperation};
|
||||
use syntax::visit as ast_visit;
|
||||
|
||||
/// Information about the registered lints.
|
||||
@ -663,9 +662,11 @@ impl<'a, 'tcx> LateContext<'a, 'tcx> {
|
||||
}
|
||||
|
||||
fn visit_ids<F>(&mut self, f: F)
|
||||
where F: FnOnce(&mut IdVisitor<LateContext>)
|
||||
where F: FnOnce(&mut IdVisitor)
|
||||
{
|
||||
let mut v = IdVisitor::new(self);
|
||||
let mut v = IdVisitor {
|
||||
cx: self
|
||||
};
|
||||
f(&mut v);
|
||||
}
|
||||
}
|
||||
@ -779,7 +780,7 @@ impl<'a, 'tcx, 'v> hir_visit::Visitor<'v> for LateContext<'a, 'tcx> {
|
||||
fn visit_fn(&mut self, fk: hir_visit::FnKind<'v>, decl: &'v hir::FnDecl,
|
||||
body: &'v hir::Block, span: Span, id: ast::NodeId) {
|
||||
run_lints!(self, check_fn, late_passes, fk, decl, body, span, id);
|
||||
hir_visit::walk_fn(self, fk, decl, body, span);
|
||||
hir_visit::walk_fn(self, fk, decl, body, span, id);
|
||||
run_lints!(self, check_fn_post, late_passes, fk, decl, body, span, id);
|
||||
}
|
||||
|
||||
@ -820,7 +821,7 @@ impl<'a, 'tcx, 'v> hir_visit::Visitor<'v> for LateContext<'a, 'tcx> {
|
||||
|
||||
fn visit_mod(&mut self, m: &hir::Mod, s: Span, n: ast::NodeId) {
|
||||
run_lints!(self, check_mod, late_passes, m, s, n);
|
||||
hir_visit::walk_mod(self, m);
|
||||
hir_visit::walk_mod(self, m, n);
|
||||
run_lints!(self, check_mod_post, late_passes, m, s, n);
|
||||
}
|
||||
|
||||
@ -859,7 +860,7 @@ impl<'a, 'tcx, 'v> hir_visit::Visitor<'v> for LateContext<'a, 'tcx> {
|
||||
fn visit_trait_item(&mut self, trait_item: &hir::TraitItem) {
|
||||
self.with_lint_attrs(&trait_item.attrs, |cx| {
|
||||
run_lints!(cx, check_trait_item, late_passes, trait_item);
|
||||
cx.visit_ids(|v| v.visit_trait_item(trait_item));
|
||||
cx.visit_ids(|v| hir_visit::walk_trait_item(v, trait_item));
|
||||
hir_visit::walk_trait_item(cx, trait_item);
|
||||
run_lints!(cx, check_trait_item_post, late_passes, trait_item);
|
||||
});
|
||||
@ -868,7 +869,7 @@ impl<'a, 'tcx, 'v> hir_visit::Visitor<'v> for LateContext<'a, 'tcx> {
|
||||
fn visit_impl_item(&mut self, impl_item: &hir::ImplItem) {
|
||||
self.with_lint_attrs(&impl_item.attrs, |cx| {
|
||||
run_lints!(cx, check_impl_item, late_passes, impl_item);
|
||||
cx.visit_ids(|v| v.visit_impl_item(impl_item));
|
||||
cx.visit_ids(|v| hir_visit::walk_impl_item(v, impl_item));
|
||||
hir_visit::walk_impl_item(cx, impl_item);
|
||||
run_lints!(cx, check_impl_item_post, late_passes, impl_item);
|
||||
});
|
||||
@ -1046,16 +1047,30 @@ impl<'a> ast_visit::Visitor for EarlyContext<'a> {
|
||||
}
|
||||
}
|
||||
|
||||
struct IdVisitor<'a, 'b: 'a, 'tcx: 'a+'b> {
|
||||
cx: &'a mut LateContext<'b, 'tcx>
|
||||
}
|
||||
|
||||
// Output any lints that were previously added to the session.
|
||||
impl<'a, 'tcx> IdVisitingOperation for LateContext<'a, 'tcx> {
|
||||
impl<'a, 'b, 'tcx, 'v> hir_visit::Visitor<'v> for IdVisitor<'a, 'b, 'tcx> {
|
||||
|
||||
fn visit_id(&mut self, id: ast::NodeId) {
|
||||
if let Some(lints) = self.sess().lints.borrow_mut().remove(&id) {
|
||||
if let Some(lints) = self.cx.sess().lints.borrow_mut().remove(&id) {
|
||||
debug!("LateContext::visit_id: id={:?} lints={:?}", id, lints);
|
||||
for (lint_id, span, msg) in lints {
|
||||
self.span_lint(lint_id.lint, span, &msg[..])
|
||||
self.cx.span_lint(lint_id.lint, span, &msg[..])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn visit_trait_item(&mut self, _ti: &hir::TraitItem) {
|
||||
// Do not recurse into trait or impl items automatically. These are
|
||||
// processed separately by calling hir_visit::walk_trait_item()
|
||||
}
|
||||
|
||||
fn visit_impl_item(&mut self, _ii: &hir::ImplItem) {
|
||||
// See visit_trait_item()
|
||||
}
|
||||
}
|
||||
|
||||
enum CheckLintNameResult {
|
||||
@ -1172,7 +1187,6 @@ pub fn check_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
||||
|
||||
// Visit the whole crate.
|
||||
cx.with_lint_attrs(&krate.attrs, |cx| {
|
||||
cx.visit_id(ast::CRATE_NODE_ID);
|
||||
cx.visit_ids(|v| {
|
||||
hir_visit::walk_crate(v, krate);
|
||||
});
|
||||
|
@ -44,7 +44,7 @@ use syntax::parse::token::InternedString;
|
||||
use syntax_pos::Span;
|
||||
use rustc_back::target::Target;
|
||||
use hir;
|
||||
use hir::intravisit::{IdVisitor, IdVisitingOperation, Visitor};
|
||||
use hir::intravisit::Visitor;
|
||||
|
||||
pub use self::DefLike::{DlDef, DlField, DlImpl};
|
||||
pub use self::NativeLibraryKind::{NativeStatic, NativeFramework, NativeUnknown};
|
||||
@ -292,11 +292,6 @@ impl InlinedItem {
|
||||
InlinedItem::ImplItem(_, ref ii) => visitor.visit_impl_item(ii),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn visit_ids<O: IdVisitingOperation>(&self, operation: &mut O) {
|
||||
let mut id_visitor = IdVisitor::new(operation);
|
||||
self.visit(&mut id_visitor);
|
||||
}
|
||||
}
|
||||
|
||||
// FIXME: find a better place for this?
|
||||
|
@ -79,7 +79,7 @@ impl<'a, 'tcx> EffectCheckVisitor<'a, 'tcx> {
|
||||
|
||||
impl<'a, 'tcx, 'v> Visitor<'v> for EffectCheckVisitor<'a, 'tcx> {
|
||||
fn visit_fn(&mut self, fn_kind: FnKind<'v>, fn_decl: &'v hir::FnDecl,
|
||||
block: &'v hir::Block, span: Span, _: ast::NodeId) {
|
||||
block: &'v hir::Block, span: Span, id: ast::NodeId) {
|
||||
|
||||
let (is_item_fn, is_unsafe_fn) = match fn_kind {
|
||||
FnKind::ItemFn(_, _, unsafety, _, _, _, _) =>
|
||||
@ -96,7 +96,7 @@ impl<'a, 'tcx, 'v> Visitor<'v> for EffectCheckVisitor<'a, 'tcx> {
|
||||
self.unsafe_context = UnsafeContext::new(SafeContext)
|
||||
}
|
||||
|
||||
intravisit::walk_fn(self, fn_kind, fn_decl, block, span);
|
||||
intravisit::walk_fn(self, fn_kind, fn_decl, block, span, id);
|
||||
|
||||
self.unsafe_context = old_unsafe_context
|
||||
}
|
||||
|
@ -390,7 +390,7 @@ fn visit_fn(ir: &mut IrMaps,
|
||||
|
||||
// gather up the various local variables, significant expressions,
|
||||
// and so forth:
|
||||
intravisit::walk_fn(&mut fn_maps, fk, decl, body, sp);
|
||||
intravisit::walk_fn(&mut fn_maps, fk, decl, body, sp, id);
|
||||
|
||||
// Special nodes and variables:
|
||||
// - exit_ln represents the end of the fn, either by return or panic
|
||||
|
@ -974,7 +974,9 @@ impl fmt::Display for ty::InferTy {
|
||||
ty::TyVar(ref vid) if print_var_ids => write!(f, "{:?}", vid),
|
||||
ty::IntVar(ref vid) if print_var_ids => write!(f, "{:?}", vid),
|
||||
ty::FloatVar(ref vid) if print_var_ids => write!(f, "{:?}", vid),
|
||||
ty::TyVar(_) | ty::IntVar(_) | ty::FloatVar(_) => write!(f, "_"),
|
||||
ty::TyVar(_) => write!(f, "_"),
|
||||
ty::IntVar(_) => write!(f, "{}", "{integer}"),
|
||||
ty::FloatVar(_) => write!(f, "{}", "{float}"),
|
||||
ty::FreshTy(v) => write!(f, "FreshTy({})", v),
|
||||
ty::FreshIntTy(v) => write!(f, "FreshIntTy({})", v),
|
||||
ty::FreshFloatTy(v) => write!(f, "FreshFloatTy({})", v)
|
||||
|
@ -197,7 +197,7 @@ fn borrowck_fn(this: &mut BorrowckCtxt,
|
||||
decl,
|
||||
body);
|
||||
|
||||
intravisit::walk_fn(this, fk, decl, body, sp);
|
||||
intravisit::walk_fn(this, fk, decl, body, sp, id);
|
||||
}
|
||||
|
||||
fn build_borrowck_dataflow_data<'a, 'tcx>(this: &mut BorrowckCtxt<'a, 'tcx>,
|
||||
|
@ -34,7 +34,7 @@ use std::iter::{FromIterator, IntoIterator, repeat};
|
||||
|
||||
use rustc::hir;
|
||||
use rustc::hir::{Pat, PatKind};
|
||||
use rustc::hir::intravisit::{self, IdVisitor, IdVisitingOperation, Visitor, FnKind};
|
||||
use rustc::hir::intravisit::{self, Visitor, FnKind};
|
||||
use rustc_back::slice;
|
||||
|
||||
use syntax::ast::{self, DUMMY_NODE_ID, NodeId};
|
||||
@ -474,7 +474,7 @@ struct RenamingRecorder<'map> {
|
||||
renaming_map: &'map mut FnvHashMap<(NodeId, Span), NodeId>
|
||||
}
|
||||
|
||||
impl<'map> IdVisitingOperation for RenamingRecorder<'map> {
|
||||
impl<'v, 'map> Visitor<'v> for RenamingRecorder<'map> {
|
||||
fn visit_id(&mut self, node_id: NodeId) {
|
||||
let key = (node_id, self.origin_span);
|
||||
self.renaming_map.insert(key, self.substituted_node_id);
|
||||
@ -529,9 +529,7 @@ impl<'a, 'tcx> Folder for StaticInliner<'a, 'tcx> {
|
||||
renaming_map: renaming_map,
|
||||
};
|
||||
|
||||
let mut id_visitor = IdVisitor::new(&mut renaming_recorder);
|
||||
|
||||
id_visitor.visit_expr(const_expr);
|
||||
renaming_recorder.visit_expr(const_expr);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1049,7 +1047,7 @@ fn check_fn(cx: &mut MatchCheckCtxt,
|
||||
_ => cx.param_env = ParameterEnvironment::for_item(cx.tcx, fn_id),
|
||||
}
|
||||
|
||||
intravisit::walk_fn(cx, kind, decl, body, sp);
|
||||
intravisit::walk_fn(cx, kind, decl, body, sp, fn_id);
|
||||
|
||||
for input in &decl.inputs {
|
||||
check_irrefutable(cx, &input.pat, true);
|
||||
|
@ -385,9 +385,9 @@ mod svh_visitor {
|
||||
SawItem.hash(self.st); visit::walk_item(self, i)
|
||||
}
|
||||
|
||||
fn visit_mod(&mut self, m: &'a Mod, _s: Span, _n: NodeId) {
|
||||
fn visit_mod(&mut self, m: &'a Mod, _s: Span, n: NodeId) {
|
||||
debug!("visit_mod: st={:?}", self.st);
|
||||
SawMod.hash(self.st); visit::walk_mod(self, m)
|
||||
SawMod.hash(self.st); visit::walk_mod(self, m, n)
|
||||
}
|
||||
|
||||
fn visit_decl(&mut self, d: &'a Decl) {
|
||||
@ -406,9 +406,9 @@ mod svh_visitor {
|
||||
}
|
||||
|
||||
fn visit_fn(&mut self, fk: FnKind<'a>, fd: &'a FnDecl,
|
||||
b: &'a Block, s: Span, _: NodeId) {
|
||||
b: &'a Block, s: Span, n: NodeId) {
|
||||
debug!("visit_fn: st={:?}", self.st);
|
||||
SawFn.hash(self.st); visit::walk_fn(self, fk, fd, b, s)
|
||||
SawFn.hash(self.st); visit::walk_fn(self, fk, fd, b, s, n)
|
||||
}
|
||||
|
||||
fn visit_trait_item(&mut self, ti: &'a TraitItem) {
|
||||
|
@ -18,7 +18,7 @@ use rustc::session::Session;
|
||||
use rustc::hir;
|
||||
use rustc::hir::fold;
|
||||
use rustc::hir::fold::Folder;
|
||||
use rustc::hir::intravisit::{IdRange, IdRangeComputingVisitor, IdVisitingOperation};
|
||||
use rustc::hir::intravisit::{Visitor, IdRangeComputingVisitor, IdRange};
|
||||
|
||||
use common as c;
|
||||
use cstore;
|
||||
@ -693,7 +693,7 @@ struct SideTableEncodingIdVisitor<'a, 'b:'a, 'c:'a, 'tcx:'c> {
|
||||
rbml_w: &'a mut Encoder<'b>,
|
||||
}
|
||||
|
||||
impl<'a, 'b, 'c, 'tcx> IdVisitingOperation for
|
||||
impl<'a, 'b, 'c, 'tcx, 'v> Visitor<'v> for
|
||||
SideTableEncodingIdVisitor<'a, 'b, 'c, 'tcx> {
|
||||
fn visit_id(&mut self, id: ast::NodeId) {
|
||||
encode_side_tables_for_id(self.ecx, self.rbml_w, id)
|
||||
@ -704,7 +704,7 @@ fn encode_side_tables_for_ii(ecx: &e::EncodeContext,
|
||||
rbml_w: &mut Encoder,
|
||||
ii: &InlinedItem) {
|
||||
rbml_w.start_tag(c::tag_table as usize);
|
||||
ii.visit_ids(&mut SideTableEncodingIdVisitor {
|
||||
ii.visit(&mut SideTableEncodingIdVisitor {
|
||||
ecx: ecx,
|
||||
rbml_w: rbml_w
|
||||
});
|
||||
@ -1242,9 +1242,9 @@ fn copy_item_types(dcx: &DecodeContext, ii: &InlinedItem, orig_did: DefId) {
|
||||
}
|
||||
}
|
||||
|
||||
fn inlined_item_id_range(v: &InlinedItem) -> IdRange {
|
||||
fn inlined_item_id_range(ii: &InlinedItem) -> IdRange {
|
||||
let mut visitor = IdRangeComputingVisitor::new();
|
||||
v.visit_ids(&mut visitor);
|
||||
ii.visit(&mut visitor);
|
||||
visitor.result()
|
||||
}
|
||||
|
||||
|
@ -250,7 +250,7 @@ impl<'a, 'tcx> Visitor<'tcx> for BuildMir<'a, 'tcx> {
|
||||
build::construct_fn(cx, id, arguments, fn_sig.output, body)
|
||||
});
|
||||
|
||||
intravisit::walk_fn(self, fk, decl, body, span);
|
||||
intravisit::walk_fn(self, fk, decl, body, span, id);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -158,7 +158,7 @@ impl<'a, 'gcx> CheckCrateVisitor<'a, 'gcx> {
|
||||
|
||||
let qualif = self.with_mode(mode, |this| {
|
||||
this.with_euv(Some(fn_id), |euv| euv.walk_fn(fd, b));
|
||||
intravisit::walk_fn(this, fk, fd, b, s);
|
||||
intravisit::walk_fn(this, fk, fd, b, s, fn_id);
|
||||
this.qualif
|
||||
});
|
||||
|
||||
|
@ -49,7 +49,7 @@ impl<'a, 'tcx, 'v> intravisit::Visitor<'v> for RvalueContext<'a, 'tcx> {
|
||||
let mut euv = euv::ExprUseVisitor::new(&mut delegate, &infcx);
|
||||
euv.walk_fn(fd, b);
|
||||
});
|
||||
intravisit::walk_fn(self, fk, fd, b, s)
|
||||
intravisit::walk_fn(self, fk, fd, b, s, fn_id)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -291,7 +291,7 @@ impl<'a, 'tcx, 'v> Visitor<'v> for EmbargoVisitor<'a, 'tcx> {
|
||||
}
|
||||
}
|
||||
|
||||
intravisit::walk_mod(self, m);
|
||||
intravisit::walk_mod(self, m, id);
|
||||
}
|
||||
|
||||
fn visit_macro_def(&mut self, md: &'v hir::MacroDef) {
|
||||
|
@ -825,8 +825,6 @@ enum NameBindingKind<'a> {
|
||||
Import {
|
||||
binding: &'a NameBinding<'a>,
|
||||
directive: &'a ImportDirective<'a>,
|
||||
// Some(error) if using this imported name causes the import to be a privacy error
|
||||
privacy_error: Option<Box<PrivacyError<'a>>>,
|
||||
},
|
||||
}
|
||||
|
||||
@ -1206,16 +1204,11 @@ impl<'a> Resolver<'a> {
|
||||
self.used_crates.insert(krate);
|
||||
}
|
||||
|
||||
let (directive, privacy_error) = match binding.kind {
|
||||
NameBindingKind::Import { directive, ref privacy_error, .. } =>
|
||||
(directive, privacy_error),
|
||||
let directive = match binding.kind {
|
||||
NameBindingKind::Import { directive, .. } => directive,
|
||||
_ => return,
|
||||
};
|
||||
|
||||
if let Some(error) = privacy_error.as_ref() {
|
||||
self.privacy_errors.push((**error).clone());
|
||||
}
|
||||
|
||||
if !self.make_glob_map {
|
||||
return;
|
||||
}
|
||||
|
@ -73,13 +73,11 @@ pub struct ImportDirective<'a> {
|
||||
impl<'a> ImportDirective<'a> {
|
||||
// Given the binding to which this directive resolves in a particular namespace,
|
||||
// this returns the binding for the name this directive defines in that namespace.
|
||||
fn import(&'a self, binding: &'a NameBinding<'a>, privacy_error: Option<Box<PrivacyError<'a>>>)
|
||||
-> NameBinding<'a> {
|
||||
fn import(&'a self, binding: &'a NameBinding<'a>) -> NameBinding<'a> {
|
||||
NameBinding {
|
||||
kind: NameBindingKind::Import {
|
||||
binding: binding,
|
||||
directive: self,
|
||||
privacy_error: privacy_error,
|
||||
},
|
||||
span: self.span,
|
||||
vis: self.vis,
|
||||
@ -328,7 +326,7 @@ impl<'a> ::ModuleS<'a> {
|
||||
fn define_in_glob_importers(&self, name: Name, ns: Namespace, binding: &'a NameBinding<'a>) {
|
||||
if !binding.is_importable() || !binding.is_pseudo_public() { return }
|
||||
for &(importer, directive) in self.glob_importers.borrow_mut().iter() {
|
||||
let _ = importer.try_define_child(name, ns, directive.import(binding, None));
|
||||
let _ = importer.try_define_child(name, ns, directive.import(binding));
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -409,7 +407,7 @@ impl<'a, 'b:'a> ImportResolver<'a, 'b> {
|
||||
span: DUMMY_SP,
|
||||
vis: ty::Visibility::Public,
|
||||
});
|
||||
let dummy_binding = directive.import(dummy_binding, None);
|
||||
let dummy_binding = directive.import(dummy_binding);
|
||||
|
||||
let _ = source_module.try_define_child(target, ValueNS, dummy_binding.clone());
|
||||
let _ = source_module.try_define_child(target, TypeNS, dummy_binding);
|
||||
@ -494,14 +492,17 @@ impl<'a, 'b:'a> ImportResolver<'a, 'b> {
|
||||
self.resolver.resolve_name_in_module(target_module, source, TypeNS, false, true);
|
||||
|
||||
let module_ = self.resolver.current_module;
|
||||
let mut privacy_error = true;
|
||||
for &(ns, result, determined) in &[(ValueNS, &value_result, value_determined),
|
||||
(TypeNS, &type_result, type_determined)] {
|
||||
if determined.get() { continue }
|
||||
if let Indeterminate = *result { continue }
|
||||
|
||||
determined.set(true);
|
||||
if let Success(binding) = *result {
|
||||
if !binding.is_importable() {
|
||||
match *result {
|
||||
Failed(..) if !determined.get() => {
|
||||
determined.set(true);
|
||||
module_.update_resolution(target, ns, |resolution| {
|
||||
resolution.single_imports.directive_failed()
|
||||
});
|
||||
}
|
||||
Success(binding) if !binding.is_importable() => {
|
||||
let msg = format!("`{}` is not directly importable", target);
|
||||
span_err!(self.resolver.session, directive.span, E0253, "{}", &msg);
|
||||
// Do not import this illegal binding. Import a dummy binding and pretend
|
||||
@ -509,23 +510,19 @@ impl<'a, 'b:'a> ImportResolver<'a, 'b> {
|
||||
self.import_dummy_binding(module_, directive);
|
||||
return Success(());
|
||||
}
|
||||
|
||||
let privacy_error = if !self.resolver.is_accessible(binding.vis) {
|
||||
Some(Box::new(PrivacyError(directive.span, source, binding)))
|
||||
} else {
|
||||
None
|
||||
};
|
||||
|
||||
let imported_binding = directive.import(binding, privacy_error);
|
||||
let conflict = module_.try_define_child(target, ns, imported_binding);
|
||||
if let Err(old_binding) = conflict {
|
||||
let binding = &directive.import(binding, None);
|
||||
self.resolver.report_conflict(module_, target, ns, binding, old_binding);
|
||||
Success(binding) if !self.resolver.is_accessible(binding.vis) => {}
|
||||
Success(binding) if !determined.get() => {
|
||||
determined.set(true);
|
||||
let imported_binding = directive.import(binding);
|
||||
let conflict = module_.try_define_child(target, ns, imported_binding);
|
||||
if let Err(old_binding) = conflict {
|
||||
let binding = &directive.import(binding);
|
||||
self.resolver.report_conflict(module_, target, ns, binding, old_binding);
|
||||
}
|
||||
privacy_error = false;
|
||||
}
|
||||
} else {
|
||||
module_.update_resolution(target, ns, |resolution| {
|
||||
resolution.single_imports.directive_failed();
|
||||
});
|
||||
Success(_) => privacy_error = false,
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
|
||||
@ -556,6 +553,14 @@ impl<'a, 'b:'a> ImportResolver<'a, 'b> {
|
||||
_ => (),
|
||||
}
|
||||
|
||||
if privacy_error {
|
||||
for &(ns, result) in &[(ValueNS, &value_result), (TypeNS, &type_result)] {
|
||||
let binding = match *result { Success(binding) => binding, _ => continue };
|
||||
self.resolver.privacy_errors.push(PrivacyError(directive.span, source, binding));
|
||||
let _ = module_.try_define_child(target, ns, directive.import(binding));
|
||||
}
|
||||
}
|
||||
|
||||
match (&value_result, &type_result) {
|
||||
(&Success(binding), _) if !binding.pseudo_vis()
|
||||
.is_at_least(directive.vis, self.resolver) &&
|
||||
@ -592,19 +597,6 @@ impl<'a, 'b:'a> ImportResolver<'a, 'b> {
|
||||
_ => {}
|
||||
}
|
||||
|
||||
// Report a privacy error here if all successful namespaces are privacy errors.
|
||||
let mut privacy_error = None;
|
||||
for &ns in &[ValueNS, TypeNS] {
|
||||
privacy_error = match module_.resolve_name(target, ns, true) {
|
||||
Success(&NameBinding {
|
||||
kind: NameBindingKind::Import { ref privacy_error, .. }, ..
|
||||
}) => privacy_error.as_ref().map(|error| (**error).clone()),
|
||||
_ => continue,
|
||||
};
|
||||
if privacy_error.is_none() { break }
|
||||
}
|
||||
privacy_error.map(|error| self.resolver.privacy_errors.push(error));
|
||||
|
||||
// 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.
|
||||
@ -652,7 +644,7 @@ impl<'a, 'b:'a> ImportResolver<'a, 'b> {
|
||||
}).collect::<Vec<_>>();
|
||||
for ((name, ns), binding) in bindings {
|
||||
if binding.is_importable() && binding.is_pseudo_public() {
|
||||
let _ = module_.try_define_child(name, ns, directive.import(binding, None));
|
||||
let _ = module_.try_define_child(name, ns, directive.import(binding));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -503,7 +503,7 @@ impl<'a, 'gcx, 'tcx, 'v> Visitor<'v> for AdjustBorrowKind<'a, 'gcx, 'tcx> {
|
||||
span: Span,
|
||||
id: ast::NodeId)
|
||||
{
|
||||
intravisit::walk_fn(self, fn_kind, decl, body, span);
|
||||
intravisit::walk_fn(self, fn_kind, decl, body, span, id);
|
||||
self.analyze_closure(id, span, decl, body);
|
||||
}
|
||||
}
|
||||
|
@ -406,7 +406,9 @@ impl<'a, 'b> Context<'a, 'b> {
|
||||
let arg_idx = match arg_index_consumed.get_mut(i) {
|
||||
None => 0, // error already emitted elsewhere
|
||||
Some(offset) => {
|
||||
let arg_idx = self.arg_index_map[i][*offset];
|
||||
let ref idx_map = self.arg_index_map[i];
|
||||
// unwrap_or branch: error already emitted elsewhere
|
||||
let arg_idx = *idx_map.get(*offset).unwrap_or(&0);
|
||||
*offset += 1;
|
||||
arg_idx
|
||||
}
|
||||
|
@ -193,6 +193,20 @@ impl MultiSpan {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn from_span(primary_span: Span) -> MultiSpan {
|
||||
MultiSpan {
|
||||
primary_spans: vec![primary_span],
|
||||
span_labels: vec![]
|
||||
}
|
||||
}
|
||||
|
||||
pub fn from_spans(vec: Vec<Span>) -> MultiSpan {
|
||||
MultiSpan {
|
||||
primary_spans: vec,
|
||||
span_labels: vec![]
|
||||
}
|
||||
}
|
||||
|
||||
pub fn push_span_label(&mut self, span: Span, label: String) {
|
||||
self.span_labels.push((span, label));
|
||||
}
|
||||
@ -240,10 +254,7 @@ impl MultiSpan {
|
||||
|
||||
impl From<Span> for MultiSpan {
|
||||
fn from(span: Span) -> MultiSpan {
|
||||
MultiSpan {
|
||||
primary_spans: vec![span],
|
||||
span_labels: vec![]
|
||||
}
|
||||
MultiSpan::from_span(span)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -12,7 +12,7 @@ fn main() {
|
||||
let _x: i32 = [1, 2, 3];
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `i32`
|
||||
//~| found type `[_; 3]`
|
||||
//~| found type `[{integer}; 3]`
|
||||
//~| expected i32, found array of 3 elements
|
||||
|
||||
let x: &[i32] = &[1, 2, 3];
|
||||
|
@ -11,6 +11,6 @@
|
||||
static i: String = 10;
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `std::string::String`
|
||||
//~| found type `_`
|
||||
//~| found type `{integer}`
|
||||
//~| expected struct `std::string::String`, found integral variable
|
||||
fn main() { println!("{}", i); }
|
||||
|
@ -15,6 +15,6 @@ fn main() {
|
||||
f(&x);
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `&mut i32`
|
||||
//~| found type `&_`
|
||||
//~| found type `&{integer}`
|
||||
//~| values differ in mutability
|
||||
}
|
||||
|
@ -14,6 +14,6 @@ fn main() {
|
||||
let _: &[i32] = [0];
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `&[i32]`
|
||||
//~| found type `[_; 1]`
|
||||
//~| found type `[{integer}; 1]`
|
||||
//~| expected &-ptr, found array of 1 elements
|
||||
}
|
||||
|
@ -15,6 +15,6 @@ fn main() {
|
||||
x = 5;
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `std::option::Option<usize>`
|
||||
//~| found type `_`
|
||||
//~| found type `{integer}`
|
||||
//~| expected enum `std::option::Option`, found integral variable
|
||||
}
|
||||
|
@ -12,7 +12,7 @@ fn main() {
|
||||
if let Some(b) = None { //~ ERROR: `if let` arms have incompatible types
|
||||
//~^ expected (), found integral variable
|
||||
//~| expected type `()`
|
||||
//~| found type `_`
|
||||
//~| found type `{integer}`
|
||||
()
|
||||
} else { //~ NOTE: `if let` arm with an incompatible type
|
||||
1
|
||||
|
@ -41,6 +41,12 @@ fn main() {
|
||||
//~^ ERROR invalid reference to argument `0` (no arguments given)
|
||||
//~^^ ERROR invalid reference to argument `1` (no arguments given)
|
||||
|
||||
// bad named arguments, #35082
|
||||
|
||||
format!("{valuea} {valueb}", valuea=5, valuec=7);
|
||||
//~^ ERROR there is no argument named `valueb`
|
||||
//~^^ ERROR named argument never used
|
||||
|
||||
// bad syntax of the format string
|
||||
|
||||
format!("{"); //~ ERROR: expected `'}'` but string was terminated
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
fn main() {
|
||||
fn bar<T>(_: T) {}
|
||||
[0][0u8]; //~ ERROR: `[_]: std::ops::Index<u8>` is not satisfied
|
||||
[0][0u8]; //~ ERROR: `[{integer}]: std::ops::Index<u8>` is not satisfied
|
||||
|
||||
[0][0]; // should infer to be a usize
|
||||
|
||||
|
@ -12,7 +12,7 @@ fn main() {
|
||||
let mut x = 2;
|
||||
x = 5.0;
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `_`
|
||||
//~| found type `_`
|
||||
//~| expected type `{integer}`
|
||||
//~| found type `{float}`
|
||||
//~| expected integral variable, found floating-point variable
|
||||
}
|
||||
|
@ -17,13 +17,13 @@ pub fn main() {
|
||||
let _x: usize = match Some(1) {
|
||||
Ok(u) => u,
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `std::option::Option<_>`
|
||||
//~| expected type `std::option::Option<{integer}>`
|
||||
//~| found type `std::result::Result<_, _>`
|
||||
//~| expected enum `std::option::Option`, found enum `std::result::Result`
|
||||
|
||||
Err(e) => panic!(e)
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `std::option::Option<_>`
|
||||
//~| expected type `std::option::Option<{integer}>`
|
||||
//~| found type `std::result::Result<_, _>`
|
||||
//~| expected enum `std::option::Option`, found enum `std::result::Result`
|
||||
};
|
||||
|
@ -14,5 +14,5 @@
|
||||
fn main() {
|
||||
// FIXME (#22405): Replace `Box::new` with `box` here when/if possible.
|
||||
(|| Box::new(*(&[0][..])))();
|
||||
//~^ ERROR `[_]: std::marker::Sized` is not satisfied
|
||||
//~^ ERROR `[{integer}]: std::marker::Sized` is not satisfied
|
||||
}
|
||||
|
@ -14,7 +14,7 @@
|
||||
fn main() {
|
||||
if let Some(homura) = Some("madoka") { //~ ERROR missing an else clause
|
||||
//~| expected type `()`
|
||||
//~| found type `_`
|
||||
//~| found type `{integer}`
|
||||
//~| expected (), found integral variable
|
||||
765
|
||||
};
|
||||
|
@ -11,7 +11,7 @@
|
||||
macro_rules! macro_panic {
|
||||
($not_a_function:expr, $some_argument:ident) => {
|
||||
$not_a_function($some_argument)
|
||||
//~^ ERROR expected function, found `_`
|
||||
//~^ ERROR expected function, found `{integer}`
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -14,7 +14,7 @@ fn main() {
|
||||
} else if false {
|
||||
//~^ ERROR if may be missing an else clause
|
||||
//~| expected type `()`
|
||||
//~| found type `_`
|
||||
//~| found type `{integer}`
|
||||
//~| expected (), found integral variable
|
||||
1
|
||||
};
|
||||
|
@ -14,7 +14,7 @@ const A: (isize,isize) = (4,2);
|
||||
fn main() {
|
||||
match 42 { A => () }
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `_`
|
||||
//~| expected type `{integer}`
|
||||
//~| found type `(isize, isize)`
|
||||
//~| expected integral variable, found tuple
|
||||
}
|
||||
|
@ -25,12 +25,12 @@ fn main() {
|
||||
match &Some(42) {
|
||||
Some(x) => (),
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `&std::option::Option<_>`
|
||||
//~| expected type `&std::option::Option<{integer}>`
|
||||
//~| found type `std::option::Option<_>`
|
||||
//~| expected &-ptr, found enum `std::option::Option`
|
||||
None => ()
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `&std::option::Option<_>`
|
||||
//~| expected type `&std::option::Option<{integer}>`
|
||||
//~| found type `std::option::Option<_>`
|
||||
//~| expected &-ptr, found enum `std::option::Option`
|
||||
}
|
||||
|
@ -21,5 +21,5 @@ fn take_param<T:Foo>(foo: &T) { }
|
||||
fn main() {
|
||||
let x: Box<_> = box 3;
|
||||
take_param(&x);
|
||||
//~^ ERROR `Box<_>: std::marker::Copy` is not satisfied
|
||||
//~^ ERROR `Box<{integer}>: std::marker::Copy` is not satisfied
|
||||
}
|
||||
|
@ -20,7 +20,7 @@ fn main() {
|
||||
10 ... "what" => ()
|
||||
};
|
||||
//~^^ ERROR only char and numeric types are allowed in range
|
||||
//~| start type: _
|
||||
//~| start type: {integer}
|
||||
//~| end type: &'static str
|
||||
|
||||
match 5 {
|
||||
@ -28,6 +28,6 @@ fn main() {
|
||||
_ => { }
|
||||
};
|
||||
//~^^^ ERROR mismatched types
|
||||
//~| expected type `_`
|
||||
//~| expected type `{integer}`
|
||||
//~| found type `char`
|
||||
}
|
||||
|
@ -18,7 +18,7 @@ fn main() {
|
||||
};
|
||||
|
||||
match &[0, 1, 2] {
|
||||
[..] => {} //~ ERROR expected an array or slice, found `&[_; 3]`
|
||||
[..] => {} //~ ERROR expected an array or slice, found `&[{integer}; 3]`
|
||||
};
|
||||
|
||||
match &[0, 1, 2] {
|
||||
|
@ -24,6 +24,6 @@ fn main() {
|
||||
//~| expected &-ptr, found struct `Foo`
|
||||
Foo::bar(&42); //~ ERROR mismatched types
|
||||
//~| expected type `&Foo`
|
||||
//~| found type `&_`
|
||||
//~| found type `&{integer}`
|
||||
//~| expected struct `Foo`, found integral variable
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ fn main() {
|
||||
// (separate lines to ensure the spans are accurate)
|
||||
|
||||
let &_ //~ ERROR mismatched types
|
||||
//~| expected type `&mut _`
|
||||
//~| expected type `&mut {integer}`
|
||||
//~| found type `&_`
|
||||
//~| values differ in mutability
|
||||
= foo;
|
||||
@ -23,7 +23,7 @@ fn main() {
|
||||
let bar = &1;
|
||||
let &_ = bar;
|
||||
let &mut _ //~ ERROR mismatched types
|
||||
//~| expected type `&_`
|
||||
//~| expected type `&{integer}`
|
||||
//~| found type `&mut _`
|
||||
//~| values differ in mutability
|
||||
= bar;
|
||||
|
@ -15,5 +15,5 @@ fn bar<T: Send>(_: T) {}
|
||||
fn main() {
|
||||
let x = Rc::new(5);
|
||||
bar(x);
|
||||
//~^ ERROR `std::rc::Rc<_>: std::marker::Send` is not satisfied
|
||||
//~^ ERROR `std::rc::Rc<{integer}>: std::marker::Send` is not satisfied
|
||||
}
|
||||
|
@ -25,15 +25,15 @@ pub mod foo1 {
|
||||
}
|
||||
|
||||
fn test_single1() {
|
||||
use foo1::Bar; //~ ERROR function `Bar` is private
|
||||
use foo1::Bar;
|
||||
|
||||
Bar();
|
||||
Bar(); //~ ERROR unresolved name `Bar`
|
||||
}
|
||||
|
||||
fn test_list1() {
|
||||
use foo1::{Bar,Baz}; //~ ERROR `Bar` is private
|
||||
use foo1::{Bar,Baz};
|
||||
|
||||
Bar();
|
||||
Bar(); //~ ERROR unresolved name `Bar`
|
||||
}
|
||||
|
||||
// private type, public value
|
||||
@ -46,15 +46,15 @@ pub mod foo2 {
|
||||
}
|
||||
|
||||
fn test_single2() {
|
||||
use foo2::Bar; //~ ERROR trait `Bar` is private
|
||||
use foo2::Bar;
|
||||
|
||||
let _x : Box<Bar>;
|
||||
let _x : Box<Bar>; //~ ERROR type name `Bar` is undefined
|
||||
}
|
||||
|
||||
fn test_list2() {
|
||||
use foo2::{Bar,Baz}; //~ ERROR `Bar` is private
|
||||
use foo2::{Bar,Baz};
|
||||
|
||||
let _x: Box<Bar>;
|
||||
let _x: Box<Bar>; //~ ERROR type name `Bar` is undefined
|
||||
}
|
||||
|
||||
// neither public
|
||||
|
@ -23,5 +23,5 @@ pub fn main() {
|
||||
// Unsized type.
|
||||
let arr: &[_] = &[1, 2, 3];
|
||||
let range = *arr..;
|
||||
//~^ ERROR `[_]: std::marker::Sized` is not satisfied
|
||||
//~^ ERROR `[{integer}]: std::marker::Sized` is not satisfied
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ fn main() {
|
||||
let d = [0; 0.5];
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `usize`
|
||||
//~| found type `_`
|
||||
//~| found type `{float}`
|
||||
//~| expected usize, found floating-point variable
|
||||
//~| ERROR expected usize for repeat count, found float [E0306]
|
||||
let e = [0; "foo"];
|
||||
|
@ -16,8 +16,8 @@ fn main() {
|
||||
match Foo(1.1, marker::PhantomData) {
|
||||
1 => {}
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `Foo<_, _>`
|
||||
//~| found type `_`
|
||||
//~| expected type `Foo<{float}, _>`
|
||||
//~| found type `{integer}`
|
||||
//~| expected struct `Foo`, found integral variable
|
||||
}
|
||||
|
||||
|
@ -10,5 +10,5 @@
|
||||
|
||||
pub fn main() {
|
||||
let s: &str = "hello";
|
||||
let c: u8 = s[4]; //~ ERROR `str: std::ops::Index<_>` is not satisfied
|
||||
let c: u8 = s[4]; //~ ERROR `str: std::ops::Index<{integer}>` is not satisfied
|
||||
}
|
||||
|
@ -24,6 +24,6 @@ fn main() {
|
||||
//~| expected struct `Foo`, found struct `Bar`
|
||||
let f__isize = Foo { a: 2, ..4 }; //~ ERROR mismatched types
|
||||
//~| expected type `Foo`
|
||||
//~| found type `_`
|
||||
//~| found type `{integer}`
|
||||
//~| expected struct `Foo`, found integral variable
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ static foo: Foo = Foo { a: 2, ..bar }; //~ ERROR mismatched types
|
||||
//~| expected struct `Foo`, found struct `Bar`
|
||||
static foo_i: Foo = Foo { a: 2, ..4 }; //~ ERROR mismatched types
|
||||
//~| expected type `Foo`
|
||||
//~| found type `_`
|
||||
//~| found type `{integer}`
|
||||
//~| expected struct `Foo`, found integral variable
|
||||
|
||||
fn main() {
|
||||
|
@ -26,5 +26,5 @@ fn is_ee<T: Combo>(t: T) {
|
||||
|
||||
fn main() {
|
||||
is_ee(4);
|
||||
//~^ ERROR overflow evaluating the requirement `_: Tweedle
|
||||
//~^ ERROR overflow evaluating the requirement `{integer}: Tweedle
|
||||
}
|
||||
|
@ -16,7 +16,7 @@ fn main() {
|
||||
let y = first ((1,2.0,3));
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `(isize, f64)`
|
||||
//~| found type `(isize, f64, _)`
|
||||
//~| found type `(isize, f64, {integer})`
|
||||
//~| expected a tuple with 2 elements, found one with 3 elements
|
||||
|
||||
let y = first ((1,));
|
||||
|
@ -20,5 +20,5 @@ fn main() {
|
||||
tuple.0;
|
||||
tuple.1;
|
||||
tuple.2;
|
||||
//~^ ERROR attempted out-of-bounds tuple index `2` on type `(_, _)`
|
||||
//~^ ERROR attempted out-of-bounds tuple index `2` on type `({integer}, {integer})`
|
||||
}
|
||||
|
@ -13,7 +13,7 @@
|
||||
fn main() { let a: bool = 1; let b: i32 = true; }
|
||||
//~^ ERROR mismatched types
|
||||
//~| expected type `bool`
|
||||
//~| found type `_`
|
||||
//~| found type `{integer}`
|
||||
//~| expected bool, found integral variable
|
||||
//~| ERROR mismatched types
|
||||
//~| expected i32, found bool
|
||||
|
@ -27,7 +27,7 @@ fn test<T: Sync>(s: T) {}
|
||||
fn main() {
|
||||
let us = UnsafeCell::new(MySync{u: UnsafeCell::new(0)});
|
||||
test(us);
|
||||
//~^ ERROR `std::cell::UnsafeCell<MySync<_>>: std::marker::Sync` is not satisfied
|
||||
//~^ ERROR `std::cell::UnsafeCell<MySync<{integer}>>: std::marker::Sync` is not satisfied
|
||||
|
||||
let uns = UnsafeCell::new(NoSync);
|
||||
test(uns);
|
||||
|
@ -24,7 +24,7 @@ impl TraitB for isize {
|
||||
|
||||
fn call_it<B:TraitB>(b: B) -> isize {
|
||||
let y = 4;
|
||||
b.gimme_an_a(y) //~ ERROR `_: TraitA` is not satisfied
|
||||
b.gimme_an_a(y) //~ ERROR `{integer}: TraitA` is not satisfied
|
||||
}
|
||||
|
||||
fn main() {
|
||||
|
@ -5,7 +5,7 @@ error[E0308]: mismatched types
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected u64, found usize
|
||||
$DIR/issue-26480.rs:38:5: 38:19 note: in this expansion of write! (defined in $DIR/issue-26480.rs)
|
||||
|
||||
error: non-scalar cast: `_` as `()`
|
||||
error: non-scalar cast: `{integer}` as `()`
|
||||
--> $DIR/issue-26480.rs:33:19
|
||||
|
|
||||
33 | ($x:expr) => ($x as ())
|
||||
|
Loading…
x
Reference in New Issue
Block a user