Skip to content
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 12 pull requests #107536

Merged
merged 32 commits into from
Feb 1, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
f706c3c
Include both md and yaml ICE ticket templates
estebank Jan 15, 2023
9c3fe58
small refactor to new projection code
lcnr Jan 27, 2023
85e6f38
assert that solver results are stable
lcnr Jan 27, 2023
167fbbc
rustdoc: update Source Serif 4 from 4.004 to 4.005
tspiteri Jan 27, 2023
1c3fc9d
add comment to rustdoc.css on updating filename suffixes
tspiteri Jan 27, 2023
a8418c0
avoid needless checks
tshepang Jan 28, 2023
fd649a3
Replace enum `==`s with `match`es where it makes sense
WaffleLapkin Jan 30, 2023
4d75f61
Use `Mutability::{is_mut, is_not}`
WaffleLapkin Jan 30, 2023
f1d273c
Replace some `_ == _ || _ == _`s with `matches!(_, _ | _)`s
WaffleLapkin Jan 30, 2023
0e98a16
Track bound types like bound regions
compiler-errors Jan 17, 2023
31c14f6
rustdoc: remove unused CSS from `.setting-check`
notriddle Jan 30, 2023
340414e
Review changes
WaffleLapkin Jan 31, 2023
fd5774a
Use `Edition` methods a bit more
WaffleLapkin Jan 31, 2023
5d90413
Document `rust_2015` methods
WaffleLapkin Jan 31, 2023
03158f4
Don't do `.edition().rust_*()`
WaffleLapkin Jan 31, 2023
ef6b583
Don't accept `Edition` by ref
WaffleLapkin Jan 31, 2023
0a1f14a
Clean up eslint annotations and remove unused JS function
GuillaumeGomez Jan 26, 2023
c8e8d6e
PointeeInfo is advisory only
RalfJung Jan 31, 2023
f75b350
rustdoc: stop making unstable items transparent
notriddle Jan 31, 2023
943f833
Replace unwrap with ? in TcpListener doc
dcompoze Jan 31, 2023
b9b5676
Rollup merge of #106898 - estebank:ice-forms-are-a-headache, r=Mark-S…
GuillaumeGomez Jan 31, 2023
4755c7c
Rollup merge of #107331 - GuillaumeGomez:cleanup-js, r=notriddle
GuillaumeGomez Jan 31, 2023
d65f60d
Rollup merge of #107348 - lcnr:project-solve-new, r=compiler-errors
GuillaumeGomez Jan 31, 2023
233b319
Rollup merge of #107354 - tspiteri:source-serif-4.005, r=GuillaumeGomez
GuillaumeGomez Jan 31, 2023
c6a104f
Rollup merge of #107412 - tshepang:needless-check, r=wesleywiser
GuillaumeGomez Jan 31, 2023
53bb632
Rollup merge of #107467 - WaffleLapkin:uneq, r=oli-obk
GuillaumeGomez Jan 31, 2023
d36bdf2
Rollup merge of #107486 - compiler-errors:bound-ty-keep-name, r=oli-obk
GuillaumeGomez Jan 31, 2023
f0e4a1c
Rollup merge of #107491 - notriddle:notriddle/setting-check, r=Guilla…
GuillaumeGomez Jan 31, 2023
fe44f3b
Rollup merge of #107508 - WaffleLapkin:uneq'15, r=oli-obk
GuillaumeGomez Jan 31, 2023
7e6fc82
Rollup merge of #107525 - RalfJung:pointee-info, r=eddyb
GuillaumeGomez Jan 31, 2023
9e0bfe0
Rollup merge of #107527 - notriddle:notriddle/wcagcontrast, r=Guillau…
GuillaumeGomez Jan 31, 2023
adc3f8a
Rollup merge of #107535 - dcompoze:tcp-doc-unwrap, r=cuviper
GuillaumeGomez Jan 31, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/librustdoc/html/static/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ function browserSupportsHistoryApi() {
return window.history && typeof window.history.pushState === "function";
}

// eslint-disable-next-line no-unused-vars
function loadCss(cssUrl) {
const link = document.createElement("link");
link.href = cssUrl;
Expand Down
1 change: 0 additions & 1 deletion src/librustdoc/html/static/js/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ function hasClass(elem, className) {
return elem && elem.classList && elem.classList.contains(className);
}

// eslint-disable-next-line no-unused-vars
function addClass(elem, className) {
if (!elem || !elem.classList) {
return;
Expand Down