Просмотр исходного кода

wip: more work on diffing.

This commit is working on the diffing algorithm. We're *mostly* there but need to get fragments wired in and then keyed elements need to be re-implemented. For Dioxus core, this is the last major technical hurdle barring "fibers" (suspense) and attribute groups (inline styles).
Jonathan Kelley 4 лет назад
Родитель
Сommit
ca3b80f069
1 измененных файлов с 0 добавлено и 1 удалено
  1. 0 1
      packages/core/src/diff.rs

+ 0 - 1
packages/core/src/diff.rs

@@ -1254,7 +1254,6 @@ impl<'a> Iterator for ChildIterator<'a> {
                     VNode::Element(_) | VNode::Text(_) => {
                         // We've recursed INTO an element/text
                         // We need to recurse *out* of it and move forward to the next
-                        // println!("Found element! Returning it!");
                         should_pop = true;
                         returned_node = Some(&**node);
                     }