This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree
7 files changed
+34
-8
lines changed- compiler/rustc_const_eval/src/interpret
- src
- doc
- tools/cargotest
7 files changed
+34
-8
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
589 | 589 | | |
590 | 590 | | |
591 | 591 | | |
592 | | - | |
| 592 | + | |
593 | 593 | | |
594 | 594 | | |
595 | 595 | | |
596 | 596 | | |
597 | 597 | | |
598 | | - | |
599 | 598 | | |
600 | 599 | | |
601 | 600 | | |
| |||
- first-edition/book.toml-3
- first-edition/src/theme/first-edition.css-56
- first-edition/src/theme/header.hbs-27
- first-edition/src/theme/index.hbs-37
- listings/ch12-an-io-project/listing-12-13/src/main.rs-1
- listings/ch12-an-io-project/listing-12-14/src/main.rs-1
- listings/ch12-an-io-project/listing-12-15/src/main.rs-1
- listings/ch12-an-io-project/listing-12-16/src/main.rs-1
- listings/ch12-an-io-project/listing-12-17/src/main.rs-1
- listings/ch12-an-io-project/listing-12-18/src/main.rs-1
- listings/ch12-an-io-project/listing-12-19/src/main.rs-1
- listings/ch12-an-io-project/listing-12-20/src/main.rs-1
- listings/ch12-an-io-project/listing-12-21/src/main.rs-1
- listings/ch12-an-io-project/listing-12-22/src/main.rs-1
- listings/ch12-an-io-project/listing-12-23/src/main.rs-1
- listings/ch12-an-io-project/listing-12-24/src/main.rs-1
- listings/ch12-an-io-project/no-listing-01-handling-errors-in-main/src/main.rs-1
- listings/ch12-an-io-project/no-listing-02-using-search-in-run/src/main.rs-1
- listings/ch12-an-io-project/output-only-02-missing-lifetimes/src/main.rs-1
- listings/ch12-an-io-project/output-only-03-multiple-matches/src/main.rs-1
- listings/ch12-an-io-project/output-only-04-no-matches/src/main.rs-1
- listings/ch13-functional-features/listing-12-23-reproduced/src/main.rs-1
- listings/ch13-functional-features/listing-12-24-reproduced/src/main.rs-1
- listings/ch13-functional-features/listing-13-18/src/main.rs-1
- listings/ch13-functional-features/listing-13-19/src/main.rs-1
- listings/ch13-functional-features/listing-13-20/src/main.rs-1
- listings/ch13-functional-features/listing-13-22/src/main.rs-1
- nostarch/chapter12.md+13-123
- nostarch/chapter13.md+58-154
- nostarch/chapter15.md+6-56
- second-edition/src/theme/index.hbs-37
- src/ch12-03-improving-error-handling-and-modularity.md+5-5
- src/ch13-01-closures.md+2-2
- src/ch13-02-iterators.md+6-5
- src/ch15-00-smart-pointers.md+1-1
- src/ch15-03-drop.md+7-6
- src/ch15-06-reference-cycles.md+1-1
- src/ch16-02-message-passing.md+1-1
- src/behavior-considered-undefined.md+11-6
- src/comments.md+1-1
- src/expressions.md+2-1
- src/expressions/await-expr.md+13-8
- src/expressions/operator-expr.md+47
- src/interior-mutability.md+1-1
- src/items/functions.md+1-1
- src/items/unions.md+14-23
- src/macros-by-example.md-47
- src/runtime.md+7
- src/statements-and-expressions.md+1-1
- src/types/pointer.md+2-2
- src/types/union.md+8-7
- src/visibility-and-privacy.md+1-1
Submodule rustc-dev-guide updated 30 files
- .github/workflows/ci.yml+3-1
- .gitignore+3
- book.toml+4
- mermaid-init.js+1
- mermaid.min.js+4
- src/SUMMARY.md+2-1
- src/asm.md+1-1
- src/backend/monomorph.md+2-2
- src/building/bootstrapping.md+4-4
- src/building/compiler-documenting.md+2-2
- src/building/how-to-build-and-run.md+10-26
- src/building/suggested.md+7-12
- src/contributing.md+7-9
- src/debugging-support-in-rustc.md+37-74
- src/implementing_new_features.md+2-2
- src/lang-items.md+2-2
- src/macro-expansion.md+1-1
- src/mir/optimizations.md+7-6
- src/opaque-types-impl-trait-inference.md+277
- src/overview.md+25-25
- src/parallel-rustc.md+7-7
- src/profiling.md+3-2
- src/profiling/wpa_profiling.md+2-2
- src/rustdoc-internals.md+1-1
- src/rustdoc.md+2-2
- src/salsa.md+1-1
- src/tests/compiletest.md+3-3
- src/tests/intro.md+2-2
- src/tests/running.md+5-2
- src/ty.md+21-11
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| 14 | + | |
| 15 | + | |
14 | 16 | | |
15 | 17 | | |
16 | 18 | | |
| |||
22 | 24 | | |
23 | 25 | | |
24 | 26 | | |
| 27 | + | |
25 | 28 | | |
26 | 29 | | |
27 | 30 | | |
| |||
31 | 34 | | |
32 | 35 | | |
33 | 36 | | |
| 37 | + | |
34 | 38 | | |
35 | 39 | | |
36 | 40 | | |
| |||
40 | 44 | | |
41 | 45 | | |
42 | 46 | | |
| 47 | + | |
43 | 48 | | |
44 | 49 | | |
45 | 50 | | |
| |||
49 | 54 | | |
50 | 55 | | |
51 | 56 | | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
52 | 72 | | |
53 | 73 | | |
54 | 74 | | |
| |||
60 | 80 | | |
61 | 81 | | |
62 | 82 | | |
| 83 | + | |
63 | 84 | | |
64 | 85 | | |
65 | 86 | | |
| |||
75 | 96 | | |
76 | 97 | | |
77 | 98 | | |
| 99 | + | |
78 | 100 | | |
79 | 101 | | |
80 | 102 | | |
| |||
97 | 119 | | |
98 | 120 | | |
99 | 121 | | |
100 | | - | |
| 122 | + | |
| 123 | + | |
101 | 124 | | |
102 | 125 | | |
103 | 126 | | |
| |||
155 | 178 | | |
156 | 179 | | |
157 | 180 | | |
| 181 | + | |
158 | 182 | | |
159 | 183 | | |
160 | 184 | | |
| |||
174 | 198 | | |
175 | 199 | | |
176 | 200 | | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
177 | 204 | | |
178 | 205 | | |
179 | 206 | | |
| |||
0 commit comments