(elem *VDomElem, comp **ComponentImpl)
| 352 | } |
| 353 | |
| 354 | func (r *RootElem) renderSimple(elem *VDomElem, comp **ComponentImpl) { |
| 355 | if (*comp).Comp != nil { |
| 356 | r.unmount(&(*comp).Comp) |
| 357 | } |
| 358 | (*comp).Children = r.renderChildren(elem.Children, (*comp).Children) |
| 359 | } |
| 360 | |
| 361 | func (r *RootElem) makeRenderContext(comp *ComponentImpl) context.Context { |
| 362 | var ctx context.Context |
no test coverage detected