This repository was archived by the owner on May 28, 2025. It is now read-only.
forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit b7afd35
Auto merge of rust-lang#127658 - compiler-errors:precise-capturing-rustdoc-cross, r=<try>
Add cross-crate precise capturing support to rustdoc
Follow-up to rust-lang#127632. Fixes rust-lang#127228.
r? `@fmease`
Tracking:
* rust-lang#123432 File tree
17 files changed
+140
-21
lines changed- compiler
- rustc_hir_analysis/src
- rustc_hir/src
- rustc_metadata/src/rmeta
- decoder
- rustc_middle/src/query
- src
- librustdoc
- clean
- html
- json
- rustdoc-json-types
- tools/jsondoclint/src
- tests
- rustdoc-json
- rustdoc
- auxiliary
17 files changed
+140
-21
lines changedLines changed: 7 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2708 | 2708 |
| |
2709 | 2709 |
| |
2710 | 2710 |
| |
2711 | + | ||
2712 | + | ||
2713 | + | ||
2714 | + | ||
2715 | + | ||
2716 | + | ||
2717 | + | ||
2711 | 2718 |
| |
2712 | 2719 |
| |
2713 | 2720 |
| |
|
Lines changed: 21 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
86 | 86 |
| |
87 | 87 |
| |
88 | 88 |
| |
89 | + | ||
89 | 90 |
| |
90 | 91 |
| |
91 | 92 |
| |
| |||
1899 | 1900 |
| |
1900 | 1901 |
| |
1901 | 1902 |
| |
1903 | + | ||
1904 | + | ||
1905 | + | ||
1906 | + | ||
1907 | + | ||
1908 | + | ||
1909 | + | ||
1910 | + | ||
1911 | + | ||
1912 | + | ||
1913 | + | ||
1914 | + | ||
1915 | + | ||
1916 | + | ||
1917 | + | ||
1918 | + | ||
1919 | + | ||
1920 | + | ||
1921 | + | ||
1922 | + |
Lines changed: 10 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
72 | 72 |
| |
73 | 73 |
| |
74 | 74 |
| |
75 | + | ||
76 | + | ||
77 | + | ||
78 | + | ||
79 | + | ||
80 | + | ||
81 | + | ||
82 | + | ||
83 | + | ||
75 | 84 |
| |
76 | 85 |
| |
77 | 86 |
| |
| |||
249 | 258 |
| |
250 | 259 |
| |
251 | 260 |
| |
261 | + | ||
252 | 262 |
| |
253 | 263 |
| |
254 | 264 |
| |
|
Lines changed: 10 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1496 | 1496 |
| |
1497 | 1497 |
| |
1498 | 1498 |
| |
1499 | + | ||
1499 | 1500 |
| |
1500 | 1501 |
| |
1501 | 1502 |
| |
| |||
1636 | 1637 |
| |
1637 | 1638 |
| |
1638 | 1639 |
| |
1640 | + | ||
1639 | 1641 |
| |
1640 | 1642 |
| |
1641 | 1643 |
| |
1642 | 1644 |
| |
1643 | 1645 |
| |
1644 | 1646 |
| |
1647 | + | ||
1648 | + | ||
1649 | + | ||
1650 | + | ||
1651 | + | ||
1652 | + | ||
1653 | + | ||
1654 | + | ||
1645 | 1655 |
| |
1646 | 1656 |
| |
1647 | 1657 |
| |
|
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
442 | 442 |
| |
443 | 443 |
| |
444 | 444 |
| |
445 | + | ||
445 | 446 |
| |
446 | 447 |
| |
447 | 448 |
| |
|
Lines changed: 7 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1261 | 1261 |
| |
1262 | 1262 |
| |
1263 | 1263 |
| |
1264 | + | ||
1264 | 1265 |
| |
1265 | 1266 |
| |
1266 | 1267 |
| |
1267 | 1268 |
| |
1268 | 1269 |
| |
1269 | 1270 |
| |
1270 | 1271 |
| |
1272 | + | ||
1273 | + | ||
1274 | + | ||
1275 | + | ||
1276 | + | ||
1277 | + | ||
1271 | 1278 |
| |
1272 | 1279 |
| |
1273 | 1280 |
| |
|
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
22 | 22 |
| |
23 | 23 |
| |
24 | 24 |
| |
25 | + | ||
26 | + | ||
25 | 27 |
| |
26 | 28 |
| |
27 | 29 |
| |
|
Lines changed: 20 additions & 19 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
228 | 228 |
| |
229 | 229 |
| |
230 | 230 |
| |
231 | - | ||
232 | - | ||
231 | + | ||
232 | + | ||
233 | + | ||
233 | 234 |
| |
234 | 235 |
| |
235 | 236 |
| |
| |||
460 | 461 |
| |
461 | 462 |
| |
462 | 463 |
| |
463 | - | ||
464 | - | ||
465 | - | ||
466 | - | ||
467 | - | ||
468 | - | ||
469 | - | ||
464 | + | ||
470 | 465 |
| |
471 | 466 |
| |
472 | 467 |
| |
| |||
2242 | 2237 |
| |
2243 | 2238 |
| |
2244 | 2239 |
| |
2245 | - | ||
2246 | - | ||
2247 | - | ||
2248 | - | ||
2249 | - | ||
2250 | - | ||
2251 | - | ||
2240 | + | ||
2252 | 2241 |
| |
2253 | 2242 |
| |
2254 | 2243 |
| |
| |||
2271 | 2260 |
| |
2272 | 2261 |
| |
2273 | 2262 |
| |
2274 | - | ||
2263 | + | ||
2264 | + | ||
2275 | 2265 |
| |
2276 | 2266 |
| |
2267 | + | ||
2268 | + | ||
2269 | + | ||
2270 | + | ||
2271 | + | ||
2272 | + | ||
2273 | + | ||
2277 | 2274 |
| |
2278 | 2275 |
| |
2279 | - | ||
2276 | + | ||
2280 | 2277 |
| |
2281 | 2278 |
| |
2282 | 2279 |
| |
| |||
2295 | 2292 |
| |
2296 | 2293 |
| |
2297 | 2294 |
| |
2298 | - | ||
2295 | + | ||
2299 | 2296 |
| |
2300 | 2297 |
| |
2301 | 2298 |
| |
| |||
2335 | 2332 |
| |
2336 | 2333 |
| |
2337 | 2334 |
| |
2335 | + | ||
2336 | + | ||
2337 | + | ||
2338 | + | ||
2338 | 2339 |
| |
2339 | 2340 |
| |
2340 | 2341 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
79 | 79 |
| |
80 | 80 |
| |
81 | 81 |
| |
82 | - | ||
82 | + | ||
83 | 83 |
| |
84 | 84 |
| |
85 | 85 |
| |
|
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1244 | 1244 |
| |
1245 | 1245 |
| |
1246 | 1246 |
| |
1247 | + | ||
1248 | + | ||
1247 | 1249 |
| |
1248 | 1250 |
| |
1249 | 1251 |
| |
|
0 commit comments