-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup of 17 pull requests #74407
Rollup of 17 pull requests #74407
Commits on Jun 12, 2020
-
Enable some timeouts in SGX platform
This would partially resolve fortanix/rust-sgx#31
Configuration menu - View commit details
-
Copy full SHA for c4b0265 - Browse repository at this point
Copy the full SHA c4b0265View commit details -
Configuration menu - View commit details
-
Copy full SHA for d7dc64b - Browse repository at this point
Copy the full SHA d7dc64bView commit details -
Configuration menu - View commit details
-
Copy full SHA for c5d1fcd - Browse repository at this point
Copy the full SHA c5d1fcdView commit details
Commits on Jun 18, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 3442d23 - Browse repository at this point
Copy the full SHA 3442d23View commit details
Commits on Jun 26, 2020
-
Don't pollute docs/suggestions with libstd deps
Currently dependency crates of the standard library can sometimes leak into error messages such as when traits to import are suggested. Additionally they can leak into documentation such as in the list of "all traits implemented by `u32`". The dependencies of the standard library, however, are intended to be private. The dependencies of the standard library can't actually be stabl-y imported nor is the documentation that relevant since you can't import them on stable either. This commit updates both the compiler and rustdoc to ignore unstable traits in these two scenarios. Specifically the suggestion for traits to import ignore unstable traits, and similarly the list of traits implemented by a type excludes unstable traits. This commit is extracted from rust-lang#73441 where the addition of some new dependencies to the standard library was showed to leak into various error messages and documentation. The intention here is to go ahead and land these changes ahead of that since it will likely take some time to land.
Configuration menu - View commit details
-
Copy full SHA for fde8d11 - Browse repository at this point
Copy the full SHA fde8d11View commit details
Commits on Jun 27, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 99c1513 - Browse repository at this point
Copy the full SHA 99c1513View commit details
Commits on Jul 1, 2020
-
Ignoring test case: [codegen] repr-transparent-aggregates-1.rs for aa…
…rch64 Copyright (c) 2020, Arm Limited.
joacar01 committedJul 1, 2020 Configuration menu - View commit details
-
Copy full SHA for 582071c - Browse repository at this point
Copy the full SHA 582071cView commit details -
Configuration menu - View commit details
-
Copy full SHA for c457b67 - Browse repository at this point
Copy the full SHA c457b67View commit details
Commits on Jul 2, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 69d5fc1 - Browse repository at this point
Copy the full SHA 69d5fc1View commit details
Commits on Jul 3, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 9b6b400 - Browse repository at this point
Copy the full SHA 9b6b400View commit details
Commits on Jul 8, 2020
-
Configuration menu - View commit details
-
Copy full SHA for b0884c0 - Browse repository at this point
Copy the full SHA b0884c0View commit details
Commits on Jul 11, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 1466598 - Browse repository at this point
Copy the full SHA 1466598View commit details
Commits on Jul 14, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 382d5bb - Browse repository at this point
Copy the full SHA 382d5bbView commit details -
rustdoc: glue tokens before highlighting
Fixes rust-lang#72684. This commit also modifies the signature of `Classifier::new` to avoid copying the source being highlighted.
Configuration menu - View commit details
-
Copy full SHA for c3ee75d - Browse repository at this point
Copy the full SHA c3ee75dView commit details
Commits on Jul 15, 2020
-
rustdoc: Rename internal API fns to
into_string
to avoid surprising listed in API guidelines.
Configuration menu - View commit details
-
Copy full SHA for 0f4e4a0 - Browse repository at this point
Copy the full SHA 0f4e4a0View commit details -
Don't run everybody_loops for rustdoc
Instead, ignore resolution errors that occur in item bodies. The reason this can't ignore item bodies altogether is because `const fn` could be used in generic types, for example `[T; f()]`
Configuration menu - View commit details
-
Copy full SHA for a5275ff - Browse repository at this point
Copy the full SHA a5275ffView commit details -
Don't run analysis pass in rustdoc
- Explicitly check for missing docs - Don't run any lints except those we explicitly specified
Configuration menu - View commit details
-
Copy full SHA for b3187aa - Browse repository at this point
Copy the full SHA b3187aaView commit details -
Add an option not to report resolution errors for rustdoc
- Remove unnecessary `should_loop` variable - Report errors for trait implementations These should give resolution errors because they are visible outside the current scope. Without these errors, rustdoc will give ICEs: ``` thread 'rustc' panicked at 'attempted .def_id() on invalid res: Err', /home/joshua/src/rust/src/libstd/macros.rs:16:9 15: rustc_hir::def::Res<Id>::def_id at /home/joshua/src/rust/src/librustc_hir/def.rs:382 16: rustdoc::clean::utils::register_res at src/librustdoc/clean/utils.rs:627 17: rustdoc::clean::utils::resolve_type at src/librustdoc/clean/utils.rs:587 ``` - Add much more extensive tests + fn -> impl -> fn + fn -> impl -> fn -> macro + errors in function parameters + errors in trait bounds + errors in the type implementing the trait + unknown bounds for the type + unknown types in function bodies + errors generated by macros - Use explicit state instead of trying to reconstruct it from random info - Use an enum instead of a boolean - Add example of ignored error
Configuration menu - View commit details
-
Copy full SHA for 1b8accb - Browse repository at this point
Copy the full SHA 1b8accbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 14a8707 - Browse repository at this point
Copy the full SHA 14a8707View commit details -
Don't ICE on errors in function returning impl trait
Instead, report the error. This emits the errors on-demand, without special-casing `impl Trait`, so it should catch all ICEs of this kind, including ones that haven't been found yet. Since the error is emitted during type-checking there is less info about the error; see comments in the code for details. - Add test case for -> impl Trait - Add test for impl trait with alias - Move EmitIgnoredResolutionErrors to rustdoc This makes `fn typeck_item_bodies` public, which is not desired behavior. That change should be removed once rust-lang#74070 is merged. - Don't visit nested closures twice
Configuration menu - View commit details
-
Copy full SHA for 768d6a4 - Browse repository at this point
Copy the full SHA 768d6a4View commit details -
Recurse into function bodies, but don't typeck closures
Previously, rustdoc would issue a delay_span_bug ICE on the following code: ```rust pub fn a() -> impl Fn() -> u32 { || content::doesnt::matter() } ``` This wasn't picked up earlier because having `type Alias = impl Trait;` in the same module caused _all closures_ to be typechecked, even if they wouldn't normally. Additionally, if _any_ error was emitted, no delay_span_bug would be emitted. So as part of this commit all of the tests were separated out into different files.
Configuration menu - View commit details
-
Copy full SHA for a93bcc9 - Browse repository at this point
Copy the full SHA a93bcc9View commit details -
Configuration menu - View commit details
-
Copy full SHA for d010443 - Browse repository at this point
Copy the full SHA d010443View commit details -
Configuration menu - View commit details
-
Copy full SHA for cf844d2 - Browse repository at this point
Copy the full SHA cf844d2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0cbc1cd - Browse repository at this point
Copy the full SHA 0cbc1cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3576f5d - Browse repository at this point
Copy the full SHA 3576f5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for bbe4971 - Browse repository at this point
Copy the full SHA bbe4971View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f29e69 - Browse repository at this point
Copy the full SHA 2f29e69View commit details -
Use tcx as the only context for visitor
Previously two different parts of the context had to be passed separately; there were two sources of truth.
Configuration menu - View commit details
-
Copy full SHA for 763d373 - Browse repository at this point
Copy the full SHA 763d373View commit details -
Remove unnecessary lifetime parameter
TyCtxt is a reference type and so can be passed by value.
Configuration menu - View commit details
-
Copy full SHA for 0759a55 - Browse repository at this point
Copy the full SHA 0759a55View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2d0e8e2 - Browse repository at this point
Copy the full SHA 2d0e8e2View commit details -
Don't ICE on infinitely recursive types
`evaluate_obligation` can only be run on types that are already valid. So rustdoc still has to run typeck even though it doesn't care about the result.
Configuration menu - View commit details
-
Copy full SHA for 02a24c8 - Browse repository at this point
Copy the full SHA 02a24c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c88070 - Browse repository at this point
Copy the full SHA 4c88070View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2ff0e7 - Browse repository at this point
Copy the full SHA b2ff0e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for ac9157b - Browse repository at this point
Copy the full SHA ac9157bView commit details -
- Move static variables into the innermost scope in which they are used - Clean up comments - Remove external_providers; rename local_providers -> providers
Configuration menu - View commit details
-
Copy full SHA for 6eec9fb - Browse repository at this point
Copy the full SHA 6eec9fbView commit details -
Catch errors for any new item, not just trait implementations
This matches the previous behavior of everybody_loops and is also more consistent than special-casing impls.
Configuration menu - View commit details
-
Copy full SHA for e117b47 - Browse repository at this point
Copy the full SHA e117b47View commit details -
Use the default providers in rustc_interface instead of adding our own
This avoids duplicating the same struct twice.
Configuration menu - View commit details
-
Copy full SHA for 281ca13 - Browse repository at this point
Copy the full SHA 281ca13View commit details -
Configuration menu - View commit details
-
Copy full SHA for 703f680 - Browse repository at this point
Copy the full SHA 703f680View commit details -
Configuration menu - View commit details
-
Copy full SHA for 85c25ae - Browse repository at this point
Copy the full SHA 85c25aeView commit details
Commits on Jul 16, 2020
-
Fix typo in std::mem::transmute documentation
u32::from_ge_bytes method does not exist; replace with u32::from_be_bytes
Configuration menu - View commit details
-
Copy full SHA for 593c7fe - Browse repository at this point
Copy the full SHA 593c7feView commit details -
Configuration menu - View commit details
-
Copy full SHA for ca253ca - Browse repository at this point
Copy the full SHA ca253caView commit details -
Configuration menu - View commit details
-
Copy full SHA for b82d332 - Browse repository at this point
Copy the full SHA b82d332View commit details -
Configuration menu - View commit details
-
Copy full SHA for 631b2b9 - Browse repository at this point
Copy the full SHA 631b2b9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9bc922e - Browse repository at this point
Copy the full SHA 9bc922eView commit details -
Configuration menu - View commit details
-
Copy full SHA for aba1242 - Browse repository at this point
Copy the full SHA aba1242View commit details -
Configuration menu - View commit details
-
Copy full SHA for 52c65e0 - Browse repository at this point
Copy the full SHA 52c65e0View commit details -
Revert "Remove "important traits" feature"
This reverts commit 1244ced.
Configuration menu - View commit details
-
Copy full SHA for 9845075 - Browse repository at this point
Copy the full SHA 9845075View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3cecd60 - Browse repository at this point
Copy the full SHA 3cecd60View commit details -
Configuration menu - View commit details
-
Copy full SHA for c90fb71 - Browse repository at this point
Copy the full SHA c90fb71View commit details -
This makes the spotlight show on hover instead of click. Clicks can be used to persist it, which is also what's used on mobile.
Configuration menu - View commit details
-
Copy full SHA for 734afb4 - Browse repository at this point
Copy the full SHA 734afb4View commit details -
Configuration menu - View commit details
-
Copy full SHA for ae6c7e6 - Browse repository at this point
Copy the full SHA ae6c7e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0625b29 - Browse repository at this point
Copy the full SHA 0625b29View commit details -
Configuration menu - View commit details
-
Copy full SHA for a474b27 - Browse repository at this point
Copy the full SHA a474b27View commit details -
Don't position:relative on all pres
We need it for run buttons (rust-lang#44671), but not function defs
Configuration menu - View commit details
-
Copy full SHA for c621a54 - Browse repository at this point
Copy the full SHA c621a54View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b287f6 - Browse repository at this point
Copy the full SHA 5b287f6View commit details -
Rollup merge of rust-lang#73269 - mzohreva:mz/sgx-wait-timeout, r=jet…
…hrogb Enable some timeouts in SGX platform This would partially resolve fortanix/rust-sgx#31 cc @jethrogb and @Goirad
Configuration menu - View commit details
-
Copy full SHA for 5d8c9c3 - Browse repository at this point
Copy the full SHA 5d8c9c3View commit details -
Rollup merge of rust-lang#73566 - jyn514:name-resolve-first, r=eddyb
Don't run `everybody_loops` for rustdoc; instead ignore resolution errors r? @eddyb cc @petrochenkov, @GuillaumeGomez, @Manishearth, @ecstatic-morse, @marmeladema ~~Blocked on rust-lang#73743 Merged. ~~Blocked on crater run.~~ Crater popped up some ICEs ([now fixed](rust-lang#73566 (comment))). See [crater run](https://crater-reports.s3.amazonaws.com/pr-73566/index.html), [ICEs](rust-lang#73566 (comment)). ~~Blocked on rust-lang#74070 so that we don't make typeck_tables_of public when it shouldn't be.~~ Merged. Closes rust-lang#71820, closes rust-lang#71104, closes rust-lang#65863. ## What is the motivation for this change? As seen from a lengthy trail of PRs and issues (rust-lang#73532, rust-lang#73103, rust-lang#71820, rust-lang#71104), `everybody_loops` is causing bugs in rustdoc. The main issue is that it does not preserve the validity of the `DefId` tree, meaning that operations on DefIds may unexpectedly fail when called later. This is blocking intra-doc links (see rust-lang#73101). This PR starts by removing `everybody_loops`, fixing rust-lang#71104 and rust-lang#71820. However, that brings back the bugs seen originally in rust-lang#43348: Since libstd documents items for all platforms, the function bodies sometimes do not type check. Here are the errors from documenting `libstd` with `everybody_loops` disabled and no other changes: ```rust error[E0433]: failed to resolve: could not find `handle` in `sys` --> src/libstd/sys/windows/ext/process.rs:13:27 | 13 | let handle = sys::handle::Handle::new(handle as *mut _); | ^^^^^^ could not find `handle` in `sys` error[E0425]: cannot find function `symlink_inner` in module `sys::fs` --> src/libstd/sys/windows/ext/fs.rs:544:14 | 544 | sys::fs::symlink_inner(src.as_ref(), dst.as_ref(), false) | ^^^^^^^^^^^^^ not found in `sys::fs` error[E0425]: cannot find function `symlink_inner` in module `sys::fs` --> src/libstd/sys/windows/ext/fs.rs:564:14 | 564 | sys::fs::symlink_inner(src.as_ref(), dst.as_ref(), true) | ^^^^^^^^^^^^^ not found in `sys::fs` ``` ## Why does this need changes to `rustc_resolve`? Normally, this could be avoided by simply not calling the `typeck_item_bodies` pass. However, the errors above happen before type checking, in name resolution itself. Since name resolution is intermingled with macro expansion, and rustdoc needs expansion to happen before it knows all items to be documented, there needs to be someway to ignore _resolution_ errors in function bodies. An alternative solution suggested by @petrochenkov was to not run `everybody_loops` on anything containing a nested `DefId`. This would solve some of the immediate issues, but isn't bullet-proof: the following functions still could not be documented if the items in the body failed to resolve: - Functions containing a nested `DefId` (rust-lang#71104) - ~~Functions returning `impl Trait` (rust-lang#43878 These ended up not resolving anyway with this PR. - ~~`const fn`, because `loop {}` in `const fn` is unstable (rust-lang#43636 `const_loop` was just stabilized. This also isn't exactly what rustdoc wants, which is to avoid looking at function bodies in the first place. ## What changes were made? The hack implemented in this PR is to add an option to ignore all resolution errors in function bodies. This is enabled only for rustdoc. Since resolution errors are ignored, the MIR generated will be invalid, as can be seen in the following ICE: ```rust error: internal compiler error: broken MIR in DefId(0:11 ~ doc_cfg[8787]::uses_target_feature[0]) ("return type"): bad type [type error] --> /home/joshua/src/rust/src/test/rustdoc/doc-cfg.rs:51:1 | 51 | / pub unsafe fn uses_target_feature() { 52 | | content::should::be::irrelevant(); 53 | | } | |_^ ``` Fortunately, rustdoc does not need to access MIR in order to generate documentation. Therefore this also removes the call to `analyze()` in `rustdoc::run_core`. This has the side effect of not generating all lints by default. Most lints are safe to ignore (does rustdoc really need to run liveness analysis?) but `missing_docs` in particular is disabled when it should not be. Re-running `missing_docs` specifically does not help, because it causes the typechecking pass to be run, bringing back the errors from rust-lang#24658: ``` error[E0599]: no method named `into_handle` found for struct `sys::unix::pipe::AnonPipe` in the current scope --> src/libstd/sys/windows/ext/process.rs:71:27 | 71 | self.into_inner().into_handle().into_raw() as *mut _ | ^^^^^^^^^^^ method not found in `sys::unix::pipe::AnonPipe` | ``` Because of rust-lang#73743, we only run typeck on demand. So this only causes an issue for functions returning `impl Trait`, which were already special cased by `ReplaceFunctionWithBody`. However, it now considers `async fn f() -> T` to be considered `impl Future<Output = T>`, where before it was considered to have a concrete `T` type. ## How will this affect future changes to rustdoc? - Any new changes to rustdoc will not be able to perform type checking without bringing back resolution errors in function bodies. + As a corollary, any new lints cannot require or perform type checking. In some cases this may require refactoring other parts of the compiler to perform type-checking only on-demand, see for example rust-lang#73743. + As a corollary, rustdoc can never again call `tcx.analysis()` unless this PR is reverted altogether. ## Current status - ~~I am not yet sure how to bring back `missing_docs` without running typeck. @eddyb suggested allowing lints to opt-out of type-checking, which would probably be another rabbit hole.~~ The opt-out was implemented in rust-lang#73743. However, of the rustc lints, now _only_ missing_docs is run and no other lints: rust-lang#73566 (comment). We need a team decision on whether that's an acceptable tradeoff. Note that all rustdoc lints are still run (`intra_doc_link_resolution_failure`, etc). **UPDATE**: This was deemed acceptable in rust-lang#73566 (comment) - ~~The implementation of optional errors in `rustc_resolve` is very brute force, it should probably be moved from `LateResolver` to `Resolver` to avoid duplicating the logic in many places.~~ I'm mostly happy with it now. - This no longer allows errors in `async fn f() -> T`. This caused breakage in 50 crates out of a full crater run, all of which (that I looked at) didn't compile when run with rustc directly. In other words, it used to be that they could not be compiled but could still be documented; now they can't be documented either. This needs a decision from the rustdoc team on whether this is acceptable breakage. **UPDATE**: This was deemed acceptable in rust-lang#73566 (comment) - ~~This makes `fn typeck_tables_of` in `rustc_typeck` public. This is not desired behavior, but needs the changes from rust-lang#74070 in order to be fixed.~~ Reverted.
Configuration menu - View commit details
-
Copy full SHA for 901b9b9 - Browse repository at this point
Copy the full SHA 901b9b9View commit details -
Rollup merge of rust-lang#73771 - alexcrichton:ignore-unstable, r=est…
…ebank,GuillaumeGomez Don't pollute docs/suggestions with libstd deps Currently dependency crates of the standard library can sometimes leak into error messages such as when traits to import are suggested. Additionally they can leak into documentation such as in the list of "all traits implemented by `u32`". The dependencies of the standard library, however, are intended to be private. The dependencies of the standard library can't actually be stabl-y imported nor is the documentation that relevant since you can't import them on stable either. This commit updates both the compiler and rustdoc to ignore unstable traits in these two scenarios. Specifically the suggestion for traits to import ignore unstable traits, and similarly the list of traits implemented by a type excludes unstable traits. This commit is extracted from rust-lang#73441 where the addition of some new dependencies to the standard library was showed to leak into various error messages and documentation. The intention here is to go ahead and land these changes ahead of that since it will likely take some time to land.
Configuration menu - View commit details
-
Copy full SHA for f669279 - Browse repository at this point
Copy the full SHA f669279View commit details -
Rollup merge of rust-lang#73794 - GuillaumeGomez:cleanup-e0705, r=Dyl…
…an-DPC Small cleanup for E0705 explanation r? @Dylan-DPC
Configuration menu - View commit details
-
Copy full SHA for d5d574e - Browse repository at this point
Copy the full SHA d5d574eView commit details -
Rollup merge of rust-lang#73807 - euclio:rustdoc-highlighting, r=olli…
…e27,GuillaumeGomez rustdoc: glue tokens before highlighting Fixes rust-lang#72684. This commit also modifies the signature of `Classifier::new` to avoid copying the source being highlighted.
Configuration menu - View commit details
-
Copy full SHA for 49dcefc - Browse repository at this point
Copy the full SHA 49dcefcView commit details -
Rollup merge of rust-lang#73835 - GuillaumeGomez:cleanup-e0710, r=Dyl…
…an-DPC Clean up E0710 explanation r? @Dylan-DPC
Configuration menu - View commit details
-
Copy full SHA for 607fc3d - Browse repository at this point
Copy the full SHA 607fc3dView commit details -
Rollup merge of rust-lang#73926 - joaopaulocarreiro:github_rust-6, r=…
…nikomatsakis Ignoring test case: [codegen] repr-transparent-aggregates-1.rs for aarch64 Ignoring test case: [codegen] repr-transparent-aggregates-1.rs for aarch64. Copyright (c) 2020, Arm Limited.
Configuration menu - View commit details
-
Copy full SHA for 240c4b3 - Browse repository at this point
Copy the full SHA 240c4b3View commit details -
Rollup merge of rust-lang#73981 - ehuss:remove-ignore-stage1, r=nikom…
…atsakis Remove some `ignore-stage1` annotations. These tests appear to no longer need the `ignore-stage1` marker. - `run-make-fulldeps/issue-37839` and `run-make-fulldeps/issue-37893`: I believe these were due to the use of proc-macros, and probably were just missed in rust-lang#49219 which fixed the proc-macro compatibility. - `compile-fail/asm-src-loc-codegen-units.rs`: This was due to an old issue with landing pads (as mentioned in the linked issue rust-lang#20184). `-Zno-landing-pads` was an option when building the first stage (it was much faster), but somewhere along the way (I think the switch from makefiles to rustbuild), the option was removed. - NOTE: This test doesn't actually test what it was originally written for, and is probably mostly pointless now. This test was asserting the message "build without -C codegen-units for more exact errors", but that was removed in rust-lang#42682. It is now in essence identical to `asm-src-loc.rs`.
Configuration menu - View commit details
-
Copy full SHA for e253f79 - Browse repository at this point
Copy the full SHA e253f79View commit details -
Rollup merge of rust-lang#74148 - GuillaumeGomez:doc-alias-check, r=M…
…anishearth Move #[doc(alias)] check in rustc Part of rust-lang#73721. r? @ollie27
Configuration menu - View commit details
-
Copy full SHA for 8a6ba1d - Browse repository at this point
Copy the full SHA 8a6ba1dView commit details -
Rollup merge of rust-lang#74221 - oli-obk:const_prop_ice, r=wesleywiser
Don't panic if the lhs of a div by zero is not statically known Fixes rust-lang#73993 for real this time r? @wesleywiser
Configuration menu - View commit details
-
Copy full SHA for 0a4036c - Browse repository at this point
Copy the full SHA 0a4036cView commit details -
Rollup merge of rust-lang#74325 - GuillaumeGomez:focus-source-file-si…
…debar, r=kinnison Focus on the current file in the source file sidebar Fixes rust-lang#73360. r? @kinnison cc @rust-lang/rustdoc
Configuration menu - View commit details
-
Copy full SHA for 0b6601d - Browse repository at this point
Copy the full SHA 0b6601dView commit details -
Rollup merge of rust-lang#74359 - lzutao:rustdoc-tostring, r=Guillaum…
…eGomez rustdoc: Rename internal API fns to `into_string` to avoid surprising listed in API guidelines.
Configuration menu - View commit details
-
Copy full SHA for 0e1964a - Browse repository at this point
Copy the full SHA 0e1964aView commit details -
Rollup merge of rust-lang#74370 - Manishearth:re-spotlight, r=Guillau…
…meGomez Reintroduce spotlight / "important traits" feature (Reopened version of rust-lang#74111 because Github is broken, see discussion there) Fixes rust-lang#73785 This PR reintroduces the "spotlight" ("important traits") feature. A couple changes have been made: As there were concerns about its visibility, it has been moved to be next to the return type, as opposed to being on the side. It also no longer produces a modal, it shows the traits on hover, and it can be clicked on to pin the hover bubble. ![image](https://user-images.githubusercontent.com/1617736/86674555-a82d2600-bfad-11ea-9a4a-a1a9ffd66ae5.png) ![image](https://user-images.githubusercontent.com/1617736/86674533-a1061800-bfad-11ea-9e8a-c62ad86ed0d7.png) It also works fine on mobile: ![image](https://user-images.githubusercontent.com/1617736/86674638-bda25000-bfad-11ea-8d8d-1798b608923e.png)
Configuration menu - View commit details
-
Copy full SHA for a7c66d9 - Browse repository at this point
Copy the full SHA a7c66d9View commit details -
Rollup merge of rust-lang#74390 - ColoredCarrot:patch-1, r=lcnr
Fix typo in std::mem::transmute documentation `u32::from_ge_bytes` function does not exist; replace with `u32::from_be_bytes`. It is clear that `u32::from_le_bytes` is not meant from the context; the latter is used correctly while `from_be_bytes` is misspelled.
Configuration menu - View commit details
-
Copy full SHA for 2b5119f - Browse repository at this point
Copy the full SHA 2b5119fView commit details -
Rollup merge of rust-lang#74391 - ssomers:btree_refactor, r=Mark-Simu…
…lacrum BtreeMap: superficially refactor root access Remove or comment every unwrap in BTreeMap's main code and more. r? @Mark-Simulacrum
Configuration menu - View commit details
-
Copy full SHA for 1d1261a - Browse repository at this point
Copy the full SHA 1d1261aView commit details -
Rollup merge of rust-lang#74395 - Mark-Simulacrum:stage0-next, r=piet…
…roalbini Bump version to 1.47 This also bumps to a more recent rustfmt version, just to keep us relatively up to date (though almost nothing has changed in rustfmt we use beyond bumps to the parser infra). No formatting changes as a result of this. r? @pietroalbini
Configuration menu - View commit details
-
Copy full SHA for 56e40f6 - Browse repository at this point
Copy the full SHA 56e40f6View commit details -
Rollup merge of rust-lang#74406 - Mark-Simulacrum:fix-windows-maybe, …
…r=Mark-Simulacrum Set shell for github actions CI r? @pietroalbini but because this seems at worst harmless and CI is broken self approving
Configuration menu - View commit details
-
Copy full SHA for c7e85bb - Browse repository at this point
Copy the full SHA c7e85bbView commit details