Skip to content

Commit cfa4ac6

Browse files
committed
Auto merge of #92609 - matthiaskrgr:rollup-ldp47ot, r=matthiaskrgr
Rollup of 7 pull requests Successful merges: - #92058 (Make Run button visible on hover) - #92288 (Fix a pair of mistyped test cases in `std::net::ip`) - #92349 (Fix rustdoc::private_doc_tests lint for public re-exported items) - #92360 (Some cleanups around check_argument_types) - #92389 (Regression test for borrowck ICE #92015) - #92404 (Fix font size for [src] links in headers) - #92443 (Rustdoc: resolve associated traits for non-generic primitive types) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents a77cc64 + 26a90e4 commit cfa4ac6

21 files changed

+353
-155
lines changed

compiler/rustc_typeck/src/check/callee.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
496496
call_expr.span,
497497
call_expr,
498498
fn_sig.inputs(),
499-
&expected_arg_tys,
499+
expected_arg_tys,
500500
arg_exprs,
501501
fn_sig.c_variadic,
502502
TupleArgumentsFlag::DontTupleArguments,
@@ -529,7 +529,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
529529
call_expr.span,
530530
call_expr,
531531
fn_sig.inputs(),
532-
&expected_arg_tys,
532+
expected_arg_tys,
533533
arg_exprs,
534534
fn_sig.c_variadic,
535535
TupleArgumentsFlag::TupleArguments,

compiler/rustc_typeck/src/check/fn_ctxt/checks.rs

+121-106
Large diffs are not rendered by default.

library/std/src/net/ip/tests.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ fn test_from_str_ipv4_in_ipv6() {
7777
let none: Option<Ipv4Addr> = "::127.0.0.1:".parse().ok();
7878
assert_eq!(None, none);
7979
// not enough groups
80-
let none: Option<Ipv6Addr> = "1.2.3.4.5:127.0.0.1".parse().ok();
80+
let none: Option<Ipv6Addr> = "1:2:3:4:5:127.0.0.1".parse().ok();
8181
assert_eq!(None, none);
8282
// too many groups
83-
let none: Option<Ipv6Addr> = "1.2.3.4.5:6:7:127.0.0.1".parse().ok();
83+
let none: Option<Ipv6Addr> = "1:2:3:4:5:6:7:127.0.0.1".parse().ok();
8484
assert_eq!(None, none);
8585
}
8686

src/librustdoc/html/static/css/rustdoc.css

+8-2
Original file line numberDiff line numberDiff line change
@@ -1080,8 +1080,11 @@ body.blur > :not(#help) {
10801080

10811081
.impl-items .srclink, .impl .srclink, .methods .srclink {
10821082
/* Override header settings otherwise it's too bold */
1083-
font-size: 1.0625rem;
10841083
font-weight: normal;
1084+
font-size: 1rem;
1085+
}
1086+
.impl .srclink {
1087+
font-size: 1.0625rem;
10851088
}
10861089

10871090
.rightside {
@@ -1117,6 +1120,7 @@ pre.rust .question-mark {
11171120

11181121
a.test-arrow {
11191122
display: inline-block;
1123+
visibility: hidden;
11201124
position: absolute;
11211125
padding: 5px 10px 5px 10px;
11221126
border-radius: 5px;
@@ -1125,10 +1129,12 @@ a.test-arrow {
11251129
right: 5px;
11261130
z-index: 1;
11271131
}
1132+
.example-wrap:hover .test-arrow {
1133+
visibility: visible;
1134+
}
11281135
a.test-arrow:hover{
11291136
text-decoration: none;
11301137
}
1131-
11321138
.section-header:hover a:before {
11331139
position: absolute;
11341140
left: -25px;

src/librustdoc/html/static/css/themes/ayu.css

+1-4
Original file line numberDiff line numberDiff line change
@@ -351,11 +351,8 @@ a.test-arrow:hover {
351351
color: #999;
352352
}
353353

354-
:target, :target > * {
355-
background: rgba(255, 236, 164, 0.06);
356-
}
357-
358354
:target {
355+
background: rgba(255, 236, 164, 0.06);
359356
border-right: 3px solid rgba(255, 180, 76, 0.85);
360357
}
361358

src/librustdoc/html/static/css/themes/dark.css

+1-4
Original file line numberDiff line numberDiff line change
@@ -295,11 +295,8 @@ a.test-arrow:hover{
295295
color: #999;
296296
}
297297

298-
:target, :target > * {
299-
background-color: #494a3d;
300-
}
301-
302298
:target {
299+
background-color: #494a3d;
303300
border-right: 3px solid #bb7410;
304301
}
305302

src/librustdoc/html/static/css/themes/light.css

+1-4
Original file line numberDiff line numberDiff line change
@@ -284,11 +284,8 @@ a.test-arrow:hover{
284284
color: #999;
285285
}
286286

287-
:target, :target > * {
288-
background: #FDFFD3;
289-
}
290-
291287
:target {
288+
background: #FDFFD3;
292289
border-right: 3px solid #AD7C37;
293290
}
294291

src/librustdoc/passes/check_doc_test_visibility.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ crate fn look_for_tests<'tcx>(cx: &DocContext<'tcx>, dox: &str, item: &Item) {
131131
);
132132
}
133133
} else if tests.found_tests > 0
134-
&& !cx.cache.access_levels.is_public(item.def_id.expect_def_id())
134+
&& !cx.cache.access_levels.is_exported(item.def_id.expect_def_id())
135135
{
136136
cx.tcx.struct_span_lint_hir(
137137
crate::lint::PRIVATE_DOC_TESTS,

src/librustdoc/passes/collect_intra_doc_links.rs

+71-21
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use rustc_hir::def::{
1313
PerNS,
1414
};
1515
use rustc_hir::def_id::{CrateNum, DefId};
16-
use rustc_middle::ty::TyCtxt;
16+
use rustc_middle::ty::{Ty, TyCtxt};
1717
use rustc_middle::{bug, span_bug, ty};
1818
use rustc_resolve::ParentScope;
1919
use rustc_session::lint::Lint;
@@ -618,6 +618,39 @@ impl<'a, 'tcx> LinkCollector<'a, 'tcx> {
618618
})
619619
}
620620

621+
/// Convert a PrimitiveType to a Ty, where possible.
622+
///
623+
/// This is used for resolving trait impls for primitives
624+
fn primitive_type_to_ty(&mut self, prim: PrimitiveType) -> Option<Ty<'tcx>> {
625+
use PrimitiveType::*;
626+
let tcx = self.cx.tcx;
627+
628+
// FIXME: Only simple types are supported here, see if we can support
629+
// other types such as Tuple, Array, Slice, etc.
630+
// See https://github.com/rust-lang/rust/issues/90703#issuecomment-1004263455
631+
Some(tcx.mk_ty(match prim {
632+
Bool => ty::Bool,
633+
Str => ty::Str,
634+
Char => ty::Char,
635+
Never => ty::Never,
636+
I8 => ty::Int(ty::IntTy::I8),
637+
I16 => ty::Int(ty::IntTy::I16),
638+
I32 => ty::Int(ty::IntTy::I32),
639+
I64 => ty::Int(ty::IntTy::I64),
640+
I128 => ty::Int(ty::IntTy::I128),
641+
Isize => ty::Int(ty::IntTy::Isize),
642+
F32 => ty::Float(ty::FloatTy::F32),
643+
F64 => ty::Float(ty::FloatTy::F64),
644+
U8 => ty::Uint(ty::UintTy::U8),
645+
U16 => ty::Uint(ty::UintTy::U16),
646+
U32 => ty::Uint(ty::UintTy::U32),
647+
U64 => ty::Uint(ty::UintTy::U64),
648+
U128 => ty::Uint(ty::UintTy::U128),
649+
Usize => ty::Uint(ty::UintTy::Usize),
650+
_ => return None,
651+
}))
652+
}
653+
621654
/// Returns:
622655
/// - None if no associated item was found
623656
/// - Some((_, _, Some(_))) if an item was found and should go through a side channel
@@ -632,7 +665,25 @@ impl<'a, 'tcx> LinkCollector<'a, 'tcx> {
632665
let tcx = self.cx.tcx;
633666

634667
match root_res {
635-
Res::Primitive(prim) => self.resolve_primitive_associated_item(prim, ns, item_name),
668+
Res::Primitive(prim) => {
669+
self.resolve_primitive_associated_item(prim, ns, item_name).or_else(|| {
670+
let assoc_item = self
671+
.primitive_type_to_ty(prim)
672+
.map(|ty| {
673+
resolve_associated_trait_item(ty, module_id, item_name, ns, self.cx)
674+
})
675+
.flatten();
676+
677+
assoc_item.map(|item| {
678+
let kind = item.kind;
679+
let fragment = UrlFragment::from_assoc_item(item_name, kind, false);
680+
// HACK(jynelson): `clean` expects the type, not the associated item
681+
// but the disambiguator logic expects the associated item.
682+
// Store the kind in a side channel so that only the disambiguator logic looks at it.
683+
(root_res, fragment, Some((kind.as_def_kind(), item.def_id)))
684+
})
685+
})
686+
}
636687
Res::Def(DefKind::TyAlias, did) => {
637688
// Resolve the link on the type the alias points to.
638689
// FIXME: if the associated item is defined directly on the type alias,
@@ -666,8 +717,13 @@ impl<'a, 'tcx> LinkCollector<'a, 'tcx> {
666717
// To handle that properly resolve() would have to support
667718
// something like [`ambi_fn`](<SomeStruct as SomeTrait>::ambi_fn)
668719
.or_else(|| {
669-
let item =
670-
resolve_associated_trait_item(did, module_id, item_name, ns, self.cx);
720+
let item = resolve_associated_trait_item(
721+
tcx.type_of(did),
722+
module_id,
723+
item_name,
724+
ns,
725+
self.cx,
726+
);
671727
debug!("got associated item {:?}", item);
672728
item
673729
});
@@ -767,20 +823,20 @@ impl<'a, 'tcx> LinkCollector<'a, 'tcx> {
767823
/// Given `[std::io::Error::source]`, where `source` is unresolved, this would
768824
/// find `std::error::Error::source` and return
769825
/// `<io::Error as error::Error>::source`.
770-
fn resolve_associated_trait_item(
771-
did: DefId,
826+
fn resolve_associated_trait_item<'a>(
827+
ty: Ty<'a>,
772828
module: DefId,
773829
item_name: Symbol,
774830
ns: Namespace,
775-
cx: &mut DocContext<'_>,
831+
cx: &mut DocContext<'a>,
776832
) -> Option<ty::AssocItem> {
777833
// FIXME: this should also consider blanket impls (`impl<T> X for T`). Unfortunately
778834
// `get_auto_trait_and_blanket_impls` is broken because the caching behavior is wrong. In the
779835
// meantime, just don't look for these blanket impls.
780836

781837
// Next consider explicit impls: `impl MyTrait for MyType`
782838
// Give precedence to inherent impls.
783-
let traits = traits_implemented_by(cx, did, module);
839+
let traits = traits_implemented_by(cx, ty, module);
784840
debug!("considering traits {:?}", traits);
785841
let mut candidates = traits.iter().filter_map(|&trait_| {
786842
cx.tcx.associated_items(trait_).find_by_name_and_namespace(
@@ -799,7 +855,11 @@ fn resolve_associated_trait_item(
799855
///
800856
/// NOTE: this cannot be a query because more traits could be available when more crates are compiled!
801857
/// So it is not stable to serialize cross-crate.
802-
fn traits_implemented_by(cx: &mut DocContext<'_>, type_: DefId, module: DefId) -> FxHashSet<DefId> {
858+
fn traits_implemented_by<'a>(
859+
cx: &mut DocContext<'a>,
860+
ty: Ty<'a>,
861+
module: DefId,
862+
) -> FxHashSet<DefId> {
803863
let mut resolver = cx.resolver.borrow_mut();
804864
let in_scope_traits = cx.module_trait_cache.entry(module).or_insert_with(|| {
805865
resolver.access(|resolver| {
@@ -813,7 +873,6 @@ fn traits_implemented_by(cx: &mut DocContext<'_>, type_: DefId, module: DefId) -
813873
});
814874

815875
let tcx = cx.tcx;
816-
let ty = tcx.type_of(type_);
817876
let iter = in_scope_traits.iter().flat_map(|&trait_| {
818877
trace!("considering explicit impl for trait {:?}", trait_);
819878

@@ -826,19 +885,10 @@ fn traits_implemented_by(cx: &mut DocContext<'_>, type_: DefId, module: DefId) -
826885
"comparing type {} with kind {:?} against type {:?}",
827886
impl_type,
828887
impl_type.kind(),
829-
type_
888+
ty
830889
);
831890
// Fast path: if this is a primitive simple `==` will work
832-
let saw_impl = impl_type == ty
833-
|| match impl_type.kind() {
834-
// Check if these are the same def_id
835-
ty::Adt(def, _) => {
836-
debug!("adt def_id: {:?}", def.did);
837-
def.did == type_
838-
}
839-
ty::Foreign(def_id) => *def_id == type_,
840-
_ => false,
841-
};
891+
let saw_impl = impl_type == ty;
842892

843893
if saw_impl { Some(trait_) } else { None }
844894
})
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// Example code blocks sometimes have a "Run" button to run them on the
2+
// Playground. That button is hidden until the user hovers over the code block.
3+
// This test checks that it is hidden, and that it shows on hover.
4+
goto: file://|DOC_PATH|/test_docs/fn.foo.html
5+
assert-css: (".test-arrow", {"visibility": "hidden"})
6+
move-cursor-to: ".example-wrap"
7+
assert-css: (".test-arrow", {"visibility": "visible"})
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// This test ensures that the "[src]" have the same font size as their headers
2+
// to avoid having some weird height difference in the background when the element
3+
// is selected.
4+
goto: file://|DOC_PATH|/test_docs/struct.Foo.html
5+
show-text: true
6+
// Check the impl headers.
7+
assert-css: (".impl.has-srclink .srclink", {"font-size": "17px"}, ALL)
8+
// The ".6" part is because the font-size is actually "1.1em".
9+
assert-css: (".impl.has-srclink .code-header.in-band", {"font-size": "17.6px"}, ALL)
10+
// Check the impl items.
11+
assert-css: (".impl-items .has-srclink .srclink", {"font-size": "16px"}, ALL)
12+
assert-css: (".impl-items .has-srclink .code-header", {"font-size": "16px"}, ALL)

src/test/rustdoc-gui/src/test_docs/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
//! The point of this crate is to be able to have enough different "kinds" of
22
//! documentation generated so we can test each different features.
3+
#![doc(html_playground_url="https://play.rust-lang.org/")]
34

45
#![crate_name = "test_docs"]
56
#![feature(rustdoc_internals)]

src/test/rustdoc-ui/intra-doc/non-path-primitives.rs

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
//! [unit::eq] //~ ERROR unresolved
2929
//! [tuple::eq] //~ ERROR unresolved
3030
//! [fn::eq] //~ ERROR unresolved
31-
//! [never::eq] //~ ERROR unresolved
3231
3332
// FIXME(#78800): This breaks because it's a blanket impl
3433
// (I think? Might break for other reasons too.)

src/test/rustdoc-ui/intra-doc/non-path-primitives.stderr

+2-8
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,11 @@ error: unresolved link to `fn::eq`
5353
LL | //! [fn::eq]
5454
| ^^^^^^ the builtin type `fn` has no associated item named `eq`
5555

56-
error: unresolved link to `never::eq`
57-
--> $DIR/non-path-primitives.rs:31:6
58-
|
59-
LL | //! [never::eq]
60-
| ^^^^^^^^^ the builtin type `never` has no associated item named `eq`
61-
6256
error: unresolved link to `reference::deref`
63-
--> $DIR/non-path-primitives.rs:35:6
57+
--> $DIR/non-path-primitives.rs:34:6
6458
|
6559
LL | //! [reference::deref]
6660
| ^^^^^^^^^^^^^^^^ the builtin type `reference` has no associated item named `deref`
6761

68-
error: aborting due to 9 previous errors
62+
error: aborting due to 8 previous errors
6963

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#![deny(rustdoc::private_doc_tests)]
2+
3+
mod foo {
4+
/// private doc test
5+
///
6+
/// ```
7+
/// assert!(false);
8+
/// ```
9+
//~^^^^^ ERROR documentation test in private item
10+
pub fn bar() {}
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
error: documentation test in private item
2+
--> $DIR/private-public-item-doc-test.rs:4:5
3+
|
4+
LL | / /// private doc test
5+
LL | | ///
6+
LL | | /// ```
7+
LL | | /// assert!(false);
8+
LL | | /// ```
9+
| |___________^
10+
|
11+
note: the lint level is defined here
12+
--> $DIR/private-public-item-doc-test.rs:1:9
13+
|
14+
LL | #![deny(rustdoc::private_doc_tests)]
15+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
16+
17+
error: aborting due to previous error
18+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// check-pass
2+
3+
#![deny(rustdoc::private_doc_tests)]
4+
5+
pub fn foo() {}
6+
7+
mod private {
8+
/// re-exported doc test
9+
///
10+
/// ```
11+
/// assert!(true);
12+
/// ```
13+
pub fn bar() {}
14+
}
15+
16+
pub use private::bar;

0 commit comments

Comments
 (0)