diff options
| author | Santiago Pastorino <spastorino@gmail.com> | 2017-10-11 18:40:35 -0300 |
|---|---|---|
| committer | Paul Daniel Faria <pfaria@localhost.localdomain> | 2017-10-13 08:43:27 -0400 |
| commit | e99702f5700d5b74b05d8ac4b6441f6bce18ff87 (patch) | |
| tree | bcd7430d6b48c3478e2ad4d4f4e9851d34bd6db8 | |
| parent | 88b02ef857317313cebd3833e0b6e847789f67c0 (diff) | |
| download | rust-e99702f5700d5b74b05d8ac4b6441f6bce18ff87.tar.gz rust-e99702f5700d5b74b05d8ac4b6441f6bce18ff87.zip | |
TODO -> FIXME
| -rw-r--r-- | src/librustc_mir/transform/nll/infer.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/librustc_mir/transform/nll/infer.rs b/src/librustc_mir/transform/nll/infer.rs index f3f4228b421..2d613f9b4bd 100644 --- a/src/librustc_mir/transform/nll/infer.rs +++ b/src/librustc_mir/transform/nll/infer.rs @@ -13,13 +13,13 @@ pub struct InferenceContext { pub struct InferenceError { pub constraint_point: Location, - pub name: (), // TODO(nashenas88) RegionName + pub name: (), // FIXME(nashenas88) RegionName } newtype_index!(InferenceErrorIndex); struct VarDefinition { - name: (), // TODO(nashenas88) RegionName + name: (), // FIXME(nashenas88) RegionName value: Region, capped: bool, } @@ -189,12 +189,12 @@ impl<'a, 'gcx: 'tcx, 'tcx: 'a> Dfs<'a, 'gcx, 'tcx> { }; if successor_points.is_empty() { - // TODO handle free regions + // FIXME handle free regions // If we reach the END point in the graph, then copy // over any skolemized end points in the `from_region` // and make sure they are included in the `to_region`. // for region_decl in self.infcx.tcx.tables.borrow().free_region_map() { - // // TODO(nashenas88) figure out skolemized_end points + // // FIXME(nashenas88) figure out skolemized_end points // let block = self.env.graph.skolemized_end(region_decl.name); // let skolemized_end_point = Location { // block, |
