|
1 | 1 | # Summary
|
2 | 2 |
|
3 |
| -- [About this guide](./chap-000-about-this-guide.md) |
4 |
| -- [How to build the compiler and run what you built](./chap-010-how-to-build-and-run.md) |
5 |
| -- [Using the compiler testing framework](./chap-020-running-tests.md) |
6 |
| -- [Walkthrough: a typical contribution](./chap-030-walkthrough.md) |
7 |
| -- [High-level overview of the compiler source](./chap-040-high-level-overview.md) |
8 |
| -- [The parser](./chap-050-the-parser.md) |
9 |
| -- [Macro expansion](./chap-060-macro-expansion.md) |
10 |
| -- [Name resolution](./chap-070-name-resolution.md) |
11 |
| -- [HIR lowering](./chap-080-hir-lowering.md) |
12 |
| -- [Representing types (`ty` module in depth)](./chap-090-ty.md) |
13 |
| -- [Type inference](./chap-100-type-inference.md) |
14 |
| -- [Trait resolution](./chap-110-trait-resolution.md) |
15 |
| -- [Type checking](./chap-120-type-checking.md) |
16 |
| -- [MIR construction](./chap-130-mir-construction.md) |
17 |
| -- [MIR borrowck](./chap-140-mir-borrowck.md) |
18 |
| -- [MIR optimizations](./chap-150-mir-optimizations.md) |
19 |
| -- [trans: generating LLVM IR](./chap-160-trans.md) |
| 3 | +- [About this guide](./about-this-guide.md) |
| 4 | +- [How to build the compiler and run what you built](./how-to-build-and-run.md) |
| 5 | +- [Using the compiler testing framework](./running-tests.md) |
| 6 | +- [Walkthrough: a typical contribution](./walkthrough.md) |
| 7 | +- [High-level overview of the compiler source](./high-level-overview.md) |
| 8 | +- [The parser](./the-parser.md) |
| 9 | +- [Macro expansion](./macro-expansion.md) |
| 10 | +- [Name resolution](./name-resolution.md) |
| 11 | +- [HIR lowering](./hir-lowering.md) |
| 12 | +- [Representing types (`ty` module in depth)](./ty.md) |
| 13 | +- [Type inference](./type-inference.md) |
| 14 | +- [Trait resolution](./trait-resolution.md) |
| 15 | +- [Type checking](./type-checking.md) |
| 16 | +- [MIR construction](./mir-construction.md) |
| 17 | +- [MIR borrowck](./mir-borrowck.md) |
| 18 | +- [MIR optimizations](./mir-optimizations.md) |
| 19 | +- [trans: generating LLVM IR](./trans.md) |
20 | 20 | - [Glossary](./glossary.md)
|
0 commit comments