just-react icon indicating copy to clipboard operation
just-react copied to clipboard

render阶段,beginWork和completeWork

Open qingwu-aby opened this issue 5 years ago • 1 comments
trafficstars

在最新的master代码中,三个月之前有一次更新,移除了effectTag

const deletions = returnFiber.deletions;
    if (deletions === null) {
      returnFiber.deletions = [childToDelete];
      returnFiber.flags |= Deletion;
    } else {
      deletions.push(childToDelete);
    }

使用了flags进行判断

qingwu-aby avatar Oct 07 '20 12:10 qingwu-aby

感谢反馈。

BetaSu avatar Oct 23 '20 06:10 BetaSu