updateProfiler
应该跟timeoutComponent
一样是下个版本的功能,目前看不出有什么作用
function updateProfiler(current, workInProgress) {
const nextProps = workInProgress.pendingProps;
if (enableProfilerTimer) {
workInProgress.effectTag |= Update;
}
if (workInProgress.memoizedProps === nextProps) {
return bailoutOnAlreadyFinishedWork(current, workInProgress);
}
const nextChildren = nextProps.children;
reconcileChildren(current, workInProgress, nextChildren);
memoizeProps(workInProgress, nextProps);
return workInProgress.child;
}
results matching ""
No results matching ""
扫码添加Jokcy,更多更新更优质的前端学习内容不断更新中,期待与你一起成长!