Skip to content

Commit ea66b23

Browse files
rylevjyn514JohnTitor
authored
Create issues for many TODOs (#1163)
* Create issues for many TODOs * Update src/crates-io.md Co-authored-by: Joshua Nelson <[email protected]> * Update src/backend/inline-asm.md Co-authored-by: Yuki Okushi <[email protected]> Co-authored-by: Joshua Nelson <[email protected]> Co-authored-by: Yuki Okushi <[email protected]>
1 parent 8477986 commit ea66b23

10 files changed

+15
-13
lines changed

src/ast-validation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
AST validation is the process of checking various correctness properties about
44
the AST after macro expansion.
55

6-
**TODO**: write this chapter.
6+
**TODO**: write this chapter. [#656](https://github.com/rust-lang/rustc-dev-guide/issues/656)

src/backend/inline-asm.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Inline Assembly
22

3-
**TODO: You can find more info in
4-
https://github.com/rust-lang/rust/pull/69171#issue-375572066**
3+
**TODO**: You can find more info
4+
[here](https://github.com/rust-lang/rust/pull/69171#issue-375572066)
5+
[#1162](https://github.com/rust-lang/rustc-dev-guide/issues/1162)

src/crates-io.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ reasons:
1212
- The dependency may have transitive dependencies that have one of the above
1313
problems.
1414

15-
TODO: what is the vetting process?
15+
As of <!-- date: 2021-07 --> July 2021, there is no official policy for vetting
16+
new dependencies to the compiler. Generally, new dependencies are not added
17+
to the compiler unless there is a good reason to do so.
1618

1719
## Permitted dependencies
1820

src/debugging-support-in-rustc.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,7 @@ Clang always embeds an MD5 checksum, though this does not appear in documentatio
314314
* New demangler in `libiberty` (gcc source tree).
315315
* New demangler in LLVM or LLDB.
316316

317-
**TODO**: Check the location of the demangler source.
318-
[Question on Github](https://github.com/rust-lang/rustc-dev-guide/pull/316#discussion_r283062536).
317+
**TODO**: Check the location of the demangler source. [#1157](https://github.com/rust-lang/rustc-dev-guide/issues/1157)
319318

320319
#### Reuse Rust compiler for expressions
321320

src/feature-gate-ck.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Feature Gate Checking
22

3-
**TODO**: this chapter
3+
**TODO**: this chapter [#1158](https://github.com/rust-lang/rustc-dev-guide/issues/1158)

src/hir-debugging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ The `-Z unpretty=hir-tree` flag will dump out the HIR.
55
If you are trying to correlate `NodeId`s or `DefId`s with source code, the
66
`--pretty expanded,identified` flag may be useful.
77

8-
TODO: anything else?
8+
TODO: anything else? [#1159](https://github.com/rust-lang/rustc-dev-guide/issues/1159)

src/identifiers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ See the [HIR chapter][hir-map] for more detailed information.
8282
- [`Promoted`] identifies a promoted constant within another item (related to
8383
const evaluation). Note: it is unique only locally within the item, so it
8484
should be associated with a `DefId`.
85-
[`GlobalId`] will give you a more specific identifier (TODO).
85+
[`GlobalId`] will give you a more specific identifier.
8686

8787
- [`GlobalId`] identifies a global variable: a `const`, a `static`, a `const fn`
8888
where all arguments are [zero-sized types], or a promoted constant.

src/macro-expansion.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -608,10 +608,10 @@ Because the Rust ABI is unstable, we use the C ABI for this conversion.
608608
[pm]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_expand/proc_macro/index.html
609609
[pms]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_expand/proc_macro_server/index.html
610610

611-
TODO: more here.
611+
TODO: more here. [#1160](https://github.com/rust-lang/rustc-dev-guide/issues/1160)
612612

613613
### Custom Derive
614614

615615
Custom derives are a special type of proc macro.
616616

617-
TODO: more?
617+
TODO: more? [#1160](https://github.com/rust-lang/rustc-dev-guide/issues/1160)

src/name-resolution.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ To tell the difference between speculative loads and loads initiated by the
164164
user, resolve passes around a `record_used` parameter, which is `false` when
165165
the load is speculative.
166166

167-
## TODO:
167+
## TODO: [#16](https://github.com/rust-lang/rustc-dev-guide/issues/16)
168168

169169
This is a result of the first pass of learning the code. It is definitely
170170
incomplete and not detailed enough. It also might be inaccurate in places.

src/type-checking.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ For more details, see the [`collect`][collect] module.
4141
[queries]: ./query.md
4242
[collect]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_typeck/collect/
4343

44-
**TODO**: actually talk about type checking...
44+
**TODO**: actually talk about type checking... [#1161](https://github.com/rust-lang/rustc-dev-guide/issues/1161)

0 commit comments

Comments
 (0)