Skip to content

Commit 997282c

Browse files
authored
overview.md: Link to existing Macro Expansion and Name Resolution docs (rust-lang#1388)
1 parent 4627aa9 commit 997282c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/rustc-dev-guide/src/overview.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -377,14 +377,14 @@ For more details on bootstrapping, see
377377
- Main entry point: [`rustc_lexer::first_token`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lexer/fn.first_token.html)
378378
- Parsing: Parse the stream of tokens to an Abstract Syntax Tree (AST)
379379
- Guide: [Lexing and Parsing](https://rustc-dev-guide.rust-lang.org/the-parser.html)
380+
- Guide: [Macro Expansion](https://rustc-dev-guide.rust-lang.org/macro-expansion.html)
381+
- Guide: [Name Resolution](https://rustc-dev-guide.rust-lang.org/name-resolution.html)
380382
- Parser definition: [`rustc_parse`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_parse/index.html)
381383
- Main entry points:
382384
- [Entry point for first file in crate](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_interface/passes/fn.parse.html)
383385
- [Entry point for outline module parsing](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_expand/module/fn.parse_external_mod.html)
384386
- [Entry point for macro fragments][parse_nonterminal]
385387
- AST definition: [`rustc_ast`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/ast/index.html)
386-
- Expansion: **TODO**
387-
- Name Resolution: **TODO**
388388
- Feature gating: **TODO**
389389
- Early linting: **TODO**
390390
- The High Level Intermediate Representation (HIR)

0 commit comments

Comments
 (0)