ydm1475

Results 2 issues of ydm1475

[https://github.com/BetaSu/big-react/blob/master/packages/react-reconciler/src/updateQueue.ts](https://github.com/BetaSu/big-react/blob/master/packages/react-reconciler/src/updateQueue.ts) 大佬这个文件中`processUpdateQueue`目前计算时, basicStateReducer(baseState, action) 感觉地方不应该用baseState而是我们计算出的新的newState

请可以运行这个例子,[https://codesandbox.io/s/relaxed-ace-m9x292?file=/App.js](url) 点击后组件的destory执行顺序为 ![image](https://github.com/BetaSu/big-react/assets/26951062/0f6b051a-8e13-4a41-b1c4-24d90d7679d8)。 而在本项目中执行顺序与官方实现不一致,下图为本项目中的打印顺序为 ![image](https://github.com/BetaSu/big-react/assets/26951062/30f4b2ce-a7a2-4c70-8283-e71025be2d86) 官方实现在没有标记的ChildDeletion的组件会先执行 commitPassiveUnmountEffects_complete(), 从而执行destory方法。并不是像我们实现的直接先执行所有要删除组件的destory。