Merge pull request #6217 from compiler-errors/sync-from-rust-2024-06-24

subtree-push 2024-06-24
This commit is contained in:
Caleb Cartwright 2024-06-30 23:11:13 -05:00 committed by GitHub
commit 6093d48d15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
11 changed files with 124 additions and 26 deletions

View File

@ -1,3 +1,3 @@
[toolchain] [toolchain]
channel = "nightly-2024-06-13" channel = "nightly-2024-06-25"
components = ["llvm-tools", "rustc-dev"] components = ["llvm-tools", "rustc-dev"]

View File

@ -1994,7 +1994,6 @@ fn rewrite_static(
static_parts: &StaticParts<'_>, static_parts: &StaticParts<'_>,
offset: Indent, offset: Indent,
) -> Option<String> { ) -> Option<String> {
println!("rewriting static");
let colon = colon_spaces(context.config); let colon = colon_spaces(context.config);
let mut prefix = format!( let mut prefix = format!(
"{}{}{}{} {}{}{}", "{}{}{}{} {}{}{}",

View File

@ -83,6 +83,7 @@ pub(crate) enum OverflowableItem<'a> {
TuplePatField(&'a TuplePatField<'a>), TuplePatField(&'a TuplePatField<'a>),
Ty(&'a ast::Ty), Ty(&'a ast::Ty),
Pat(&'a ast::Pat), Pat(&'a ast::Pat),
PreciseCapturingArg(&'a ast::PreciseCapturingArg),
} }
impl<'a> Rewrite for OverflowableItem<'a> { impl<'a> Rewrite for OverflowableItem<'a> {
@ -123,6 +124,7 @@ impl<'a> OverflowableItem<'a> {
OverflowableItem::TuplePatField(pat) => f(*pat), OverflowableItem::TuplePatField(pat) => f(*pat),
OverflowableItem::Ty(ty) => f(*ty), OverflowableItem::Ty(ty) => f(*ty),
OverflowableItem::Pat(pat) => f(*pat), OverflowableItem::Pat(pat) => f(*pat),
OverflowableItem::PreciseCapturingArg(arg) => f(*arg),
} }
} }
@ -137,6 +139,9 @@ impl<'a> OverflowableItem<'a> {
matches!(meta_item.kind, ast::MetaItemKind::Word) matches!(meta_item.kind, ast::MetaItemKind::Word)
} }
}, },
// FIXME: Why don't we consider `SegmentParam` to be simple?
// FIXME: If we also fix `SegmentParam`, then we should apply the same
// heuristic to `PreciseCapturingArg`.
_ => false, _ => false,
} }
} }
@ -244,7 +249,15 @@ macro_rules! impl_into_overflowable_item_for_rustfmt_types {
} }
} }
impl_into_overflowable_item_for_ast_node!(Expr, GenericParam, NestedMetaItem, FieldDef, Ty, Pat); impl_into_overflowable_item_for_ast_node!(
Expr,
GenericParam,
NestedMetaItem,
FieldDef,
Ty,
Pat,
PreciseCapturingArg
);
impl_into_overflowable_item_for_rustfmt_types!([MacroArg], [SegmentParam, TuplePatField]); impl_into_overflowable_item_for_rustfmt_types!([MacroArg], [SegmentParam, TuplePatField]);
pub(crate) fn into_overflowable_list<'a, T>( pub(crate) fn into_overflowable_list<'a, T>(

View File

@ -67,7 +67,7 @@ fn parse_cfg_if_inner<'a>(
Ok(None) => continue, Ok(None) => continue,
Err(err) => { Err(err) => {
err.cancel(); err.cancel();
parser.psess.dcx.reset_err_count(); parser.psess.dcx().reset_err_count();
return Err( return Err(
"Expected item inside cfg_if block, but failed to parse it as an item", "Expected item inside cfg_if block, but failed to parse it as an item",
); );

View File

@ -16,8 +16,8 @@ pub(crate) fn parse_lazy_static(
($method:ident $(,)* $($arg:expr),* $(,)*) => { ($method:ident $(,)* $($arg:expr),* $(,)*) => {
match parser.$method($($arg,)*) { match parser.$method($($arg,)*) {
Ok(val) => { Ok(val) => {
if parser.psess.dcx.has_errors().is_some() { if parser.psess.dcx().has_errors().is_some() {
parser.psess.dcx.reset_err_count(); parser.psess.dcx().reset_err_count();
return None; return None;
} else { } else {
val val
@ -25,13 +25,12 @@ pub(crate) fn parse_lazy_static(
} }
Err(err) => { Err(err) => {
err.cancel(); err.cancel();
parser.psess.dcx.reset_err_count(); parser.psess.dcx().reset_err_count();
return None; return None;
} }
} }
} }
} }
while parser.token.kind != TokenKind::Eof { while parser.token.kind != TokenKind::Eof {
// Parse a `lazy_static!` item. // Parse a `lazy_static!` item.
let vis = parse_or!(parse_visibility, rustc_parse::parser::FollowedByType::No); let vis = parse_or!(parse_visibility, rustc_parse::parser::FollowedByType::No);

View File

@ -1,4 +1,4 @@
use rustc_ast::token::{Delimiter, NonterminalKind, TokenKind}; use rustc_ast::token::{Delimiter, NonterminalKind, NtExprKind::*, NtPatKind::*, TokenKind};
use rustc_ast::tokenstream::TokenStream; use rustc_ast::tokenstream::TokenStream;
use rustc_ast::{ast, ptr}; use rustc_ast::{ast, ptr};
use rustc_parse::parser::{ForceCollect, Parser, Recovery}; use rustc_parse::parser::{ForceCollect, Parser, Recovery};
@ -29,8 +29,8 @@ fn parse_macro_arg<'a, 'b: 'a>(parser: &'a mut Parser<'b>) -> Option<MacroArg> {
if Parser::nonterminal_may_begin_with($nt_kind, &cloned_parser.token) { if Parser::nonterminal_may_begin_with($nt_kind, &cloned_parser.token) {
match $try_parse(&mut cloned_parser) { match $try_parse(&mut cloned_parser) {
Ok(x) => { Ok(x) => {
if parser.psess.dcx.has_errors().is_some() { if parser.psess.dcx().has_errors().is_some() {
parser.psess.dcx.reset_err_count(); parser.psess.dcx().reset_err_count();
} else { } else {
// Parsing succeeded. // Parsing succeeded.
*parser = cloned_parser; *parser = cloned_parser;
@ -39,7 +39,7 @@ fn parse_macro_arg<'a, 'b: 'a>(parser: &'a mut Parser<'b>) -> Option<MacroArg> {
} }
Err(e) => { Err(e) => {
e.cancel(); e.cancel();
parser.psess.dcx.reset_err_count(); parser.psess.dcx().reset_err_count();
} }
} }
} }
@ -48,7 +48,7 @@ fn parse_macro_arg<'a, 'b: 'a>(parser: &'a mut Parser<'b>) -> Option<MacroArg> {
parse_macro_arg!( parse_macro_arg!(
Expr, Expr,
NonterminalKind::Expr, NonterminalKind::Expr(Expr),
|parser: &mut Parser<'b>| parser.parse_expr(), |parser: &mut Parser<'b>| parser.parse_expr(),
|x: ptr::P<ast::Expr>| Some(x) |x: ptr::P<ast::Expr>| Some(x)
); );
@ -60,7 +60,7 @@ fn parse_macro_arg<'a, 'b: 'a>(parser: &'a mut Parser<'b>) -> Option<MacroArg> {
); );
parse_macro_arg!( parse_macro_arg!(
Pat, Pat,
NonterminalKind::PatParam { inferred: false }, NonterminalKind::Pat(PatParam { inferred: false }),
|parser: &mut Parser<'b>| parser.parse_pat_no_top_alt(None, None), |parser: &mut Parser<'b>| parser.parse_pat_no_top_alt(None, None),
|x: ptr::P<ast::Pat>| Some(x) |x: ptr::P<ast::Pat>| Some(x)
); );

View File

@ -210,7 +210,9 @@ impl ParseSess {
rustc_driver::DEFAULT_LOCALE_RESOURCES.to_vec(), rustc_driver::DEFAULT_LOCALE_RESOURCES.to_vec(),
false, false,
); );
self.raw_psess.dcx.make_silent(fallback_bundle, None, false); self.raw_psess
.dcx()
.make_silent(fallback_bundle, None, false);
} }
pub(crate) fn span_to_filename(&self, span: Span) -> FileName { pub(crate) fn span_to_filename(&self, span: Span) -> FileName {
@ -286,11 +288,11 @@ impl ParseSess {
} }
pub(super) fn has_errors(&self) -> bool { pub(super) fn has_errors(&self) -> bool {
self.raw_psess.dcx.has_errors().is_some() self.raw_psess.dcx().has_errors().is_some()
} }
pub(super) fn reset_errors(&self) { pub(super) fn reset_errors(&self) {
self.raw_psess.dcx.reset_err_count(); self.raw_psess.dcx().reset_err_count();
} }
} }

View File

@ -181,6 +181,7 @@ impl Spanned for ast::GenericBound {
match *self { match *self {
ast::GenericBound::Trait(ref ptr, _) => ptr.span, ast::GenericBound::Trait(ref ptr, _) => ptr.span,
ast::GenericBound::Outlives(ref l) => l.ident.span, ast::GenericBound::Outlives(ref l) => l.ident.span,
ast::GenericBound::Use(_, span) => span,
} }
} }
} }
@ -202,3 +203,12 @@ impl Spanned for ast::NestedMetaItem {
self.span() self.span()
} }
} }
impl Spanned for ast::PreciseCapturingArg {
fn span(&self) -> Span {
match self {
ast::PreciseCapturingArg::Lifetime(lt) => lt.ident.span,
ast::PreciseCapturingArg::Arg(path, _) => path.span,
}
}
}

View File

@ -177,6 +177,17 @@ impl<'a> Rewrite for SegmentParam<'a> {
} }
} }
impl Rewrite for ast::PreciseCapturingArg {
fn rewrite(&self, context: &RewriteContext<'_>, shape: Shape) -> Option<String> {
match self {
ast::PreciseCapturingArg::Lifetime(lt) => lt.rewrite(context, shape),
ast::PreciseCapturingArg::Arg(p, _) => {
rewrite_path(context, PathContext::Type, &None, p, shape)
}
}
}
}
impl Rewrite for ast::AssocItemConstraint { impl Rewrite for ast::AssocItemConstraint {
fn rewrite(&self, context: &RewriteContext<'_>, shape: Shape) -> Option<String> { fn rewrite(&self, context: &RewriteContext<'_>, shape: Shape) -> Option<String> {
use ast::AssocItemConstraintKind::{Bound, Equality}; use ast::AssocItemConstraintKind::{Bound, Equality};
@ -564,6 +575,9 @@ impl Rewrite for ast::GenericBound {
.map(|s| format!("{constness}{asyncness}{polarity}{s}")) .map(|s| format!("{constness}{asyncness}{polarity}{s}"))
.map(|s| if has_paren { format!("({})", s) } else { s }) .map(|s| if has_paren { format!("({})", s) } else { s })
} }
ast::GenericBound::Use(ref args, span) => {
overflow::rewrite_with_angle_brackets(context, "use", args.iter(), shape, span)
}
ast::GenericBound::Outlives(ref lifetime) => lifetime.rewrite(context, shape), ast::GenericBound::Outlives(ref lifetime) => lifetime.rewrite(context, shape),
} }
} }
@ -847,11 +861,7 @@ impl Rewrite for ast::Ty {
rewrite_macro(mac, None, context, shape, MacroPosition::Expression) rewrite_macro(mac, None, context, shape, MacroPosition::Expression)
} }
ast::TyKind::ImplicitSelf => Some(String::from("")), ast::TyKind::ImplicitSelf => Some(String::from("")),
ast::TyKind::ImplTrait(_, ref it, ref captures) => { ast::TyKind::ImplTrait(_, ref it) => {
// FIXME(precise_capturing): Implement formatting.
if captures.is_some() {
return None;
}
// Empty trait is not a parser error. // Empty trait is not a parser error.
if it.is_empty() { if it.is_empty() {
return Some("impl".to_owned()); return Some("impl".to_owned());
@ -935,7 +945,7 @@ fn rewrite_bare_fn(
fn is_generic_bounds_in_order(generic_bounds: &[ast::GenericBound]) -> bool { fn is_generic_bounds_in_order(generic_bounds: &[ast::GenericBound]) -> bool {
let is_trait = |b: &ast::GenericBound| match b { let is_trait = |b: &ast::GenericBound| match b {
ast::GenericBound::Outlives(..) => false, ast::GenericBound::Outlives(..) => false,
ast::GenericBound::Trait(..) => true, ast::GenericBound::Trait(..) | ast::GenericBound::Use(..) => true,
}; };
let is_lifetime = |b: &ast::GenericBound| !is_trait(b); let is_lifetime = |b: &ast::GenericBound| !is_trait(b);
let last_trait_index = generic_bounds.iter().rposition(is_trait); let last_trait_index = generic_bounds.iter().rposition(is_trait);
@ -969,7 +979,8 @@ fn join_bounds_inner(
let generic_bounds_in_order = is_generic_bounds_in_order(items); let generic_bounds_in_order = is_generic_bounds_in_order(items);
let is_bound_extendable = |s: &str, b: &ast::GenericBound| match b { let is_bound_extendable = |s: &str, b: &ast::GenericBound| match b {
ast::GenericBound::Outlives(..) => true, ast::GenericBound::Outlives(..) => true,
ast::GenericBound::Trait(..) => last_line_extendable(s), // We treat `use<>` like a trait bound here.
ast::GenericBound::Trait(..) | ast::GenericBound::Use(..) => last_line_extendable(s),
}; };
// Whether a GenericBound item is a PathSegment segment that includes internal array // Whether a GenericBound item is a PathSegment segment that includes internal array
@ -991,6 +1002,7 @@ fn join_bounds_inner(
} }
} }
} }
ast::GenericBound::Use(args, _) => args.len() > 1,
_ => false, _ => false,
}; };
@ -1114,8 +1126,7 @@ fn join_bounds_inner(
pub(crate) fn opaque_ty(ty: &Option<ptr::P<ast::Ty>>) -> Option<&ast::GenericBounds> { pub(crate) fn opaque_ty(ty: &Option<ptr::P<ast::Ty>>) -> Option<&ast::GenericBounds> {
ty.as_ref().and_then(|t| match &t.kind { ty.as_ref().and_then(|t| match &t.kind {
// FIXME(precise_capturing): Implement support here ast::TyKind::ImplTrait(_, bounds) => Some(bounds),
ast::TyKind::ImplTrait(_, bounds, _) => Some(bounds),
_ => None, _ => None,
}) })
} }

View File

@ -0,0 +1,9 @@
fn hello() -> impl
use<'a> + Sized {}
fn all_three() -> impl Sized + use<'a> + 'a;
fn pathological() -> impl use<'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a,
'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a,
'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a,
'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a, 'a> + Sized {}

View File

@ -0,0 +1,55 @@
fn hello() -> impl use<'a> + Sized {}
fn all_three() -> impl Sized + use<'a> + 'a;
fn pathological() -> impl use<
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
'a,
> + Sized {
}