From 8eb4631bd7c4345ec2a0c9b2ca2e05bdb1d79dd7 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 4 Jul 2022 13:51:51 +0200 Subject: Update list of todos --- src/util/edit_map.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/util') diff --git a/src/util/edit_map.rs b/src/util/edit_map.rs index 665367a..417f42b 100644 --- a/src/util/edit_map.rs +++ b/src/util/edit_map.rs @@ -8,9 +8,7 @@ //! And, in other cases, it’s needed to parse subcontent: pass some events //! through another tokenizer and inject the result. -/// To do: could we do without `HashMap`, so we don’t need `std`? use std::collections::HashMap; - use crate::tokenizer::Event; /// Shift `previous` and `next` links according to `jumps`. @@ -136,6 +134,7 @@ impl EditMap { } } +/// To do. fn add_impl( edit_map: &mut EditMap, index: usize, -- cgit