(portal, mode, lanes)
| 13079 | return content; |
| 13080 | } |
| 13081 | function createFiberFromPortal(portal, mode, lanes) { |
| 13082 | mode = createFiberImplClass( |
| 13083 | 4, |
| 13084 | null !== portal.children ? portal.children : [], |
| 13085 | portal.key, |
| 13086 | mode |
| 13087 | ); |
| 13088 | mode.lanes = lanes; |
| 13089 | mode.stateNode = { |
| 13090 | containerInfo: portal.containerInfo, |
| 13091 | pendingChildren: null, |
| 13092 | implementation: portal.implementation |
| 13093 | }; |
| 13094 | return mode; |
| 13095 | } |
| 13096 | function markUpdate(workInProgress) { |
| 13097 | workInProgress.flags |= 4; |
| 13098 | } |
no test coverage detected
searching dependent graphs…