(newFiber,lastPlacedIndex,newIndex)
| 7090 | // we're reconciling at a lower priority that means that this was |
| 7091 | // down-prioritized. |
| 7092 | fiber.pendingWorkPriority=priority;fiber.effectTag=NoEffect$2;fiber.index=0;fiber.sibling=null;return fiber;}}function placeChild(newFiber,lastPlacedIndex,newIndex){newFiber.index=newIndex;if(!shouldTrackSideEffects){// Noop. |
| 7093 | return lastPlacedIndex;}var current=newFiber.alternate;if(current!==null){var oldIndex=current.index;if(oldIndex<lastPlacedIndex){// This is a move. |
| 7094 | newFiber.effectTag=Placement$3;return lastPlacedIndex;}else{// This item can stay in place. |
| 7095 | return oldIndex;}}else{// This is an insertion. |
| 7096 | newFiber.effectTag=Placement$3;return lastPlacedIndex;}}function placeSingleChild(newFiber){// This is simpler for the single child case. We only need to do a |
| 7097 | // placement for inserting new children. |
| 7098 | if(shouldTrackSideEffects&&newFiber.alternate===null){newFiber.effectTag=Placement$3;}return newFiber;}function updateTextNode(returnFiber,current,textContent,priority){if(current===null||current.tag!==HostText$5){// Insert |
| 7099 | var created=createFiberFromText$1(textContent,returnFiber.internalContextTag,priority);created['return']=returnFiber;return created;}else{// Update |
no outgoing calls
no test coverage detected