Skip to content

Commit fc12224

Browse files
committed
TODO->FIXME
1 parent 5883018 commit fc12224

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

compiler/rustc_mir_build/src/thir/pattern/deconstruct_pat.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
//!
4545
//! ## Opaque patterns
4646
//!
47-
//! Some patterns, such as TODO, cannot be inspected, which we handle with `Constructor::Opaque`.
47+
//! Some patterns, such as FIXME(Nadrieril), cannot be inspected, which we handle with `Constructor::Opaque`.
4848
//! Since we know nothing of these patterns, we assume they never cover each other. In order to
4949
//! respect the invariants of [`SplitConstructorSet`], we give each `Opaque` constructor a unique id
5050
//! so we can recognize it.

compiler/rustc_mir_build/src/thir/pattern/usefulness.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,9 @@
144144
//! This is how the algorithm works: we recursively peel off one constructor at a time until we have
145145
//! tried them all. This "peeling off" step is called "specialization".
146146
//!
147-
//! TODO: we operate on rows
148-
//! TODO: define and illustrate specialize
149-
//! TODO: unspecialization to reconstruct witnesses
147+
//! FIXME(Nadrieril): we operate on rows
148+
//! FIXME(Nadrieril): define and illustrate specialize
149+
//! FIXME(Nadrieril): unspecialization to reconstruct witnesses
150150
//!
151151
//! Note: we will sometimes abbreviate "constructor" as "ctor".
152152
//!
@@ -327,7 +327,7 @@
327327
//!
328328
//! # Or-patterns
329329
//!
330-
//! TODO
330+
//! FIXME(Nadrieril)
331331
//!
332332
//!
333333
//! # Constants in patterns

0 commit comments

Comments
 (0)