* Drill down (through composites and empty components) until we get a native or * native text component. * * This is pretty polymorphic but unavoidable with the current structure we have * for `_renderedChildren`.
(component)
| 7288 | * for `_renderedChildren`. |
| 7289 | */ |
| 7290 | function getRenderedNativeOrTextFromComponent(component) { |
| 7291 | var rendered; |
| 7292 | while (rendered = component._renderedComponent) { |
| 7293 | component = rendered; |
| 7294 | } |
| 7295 | return component; |
| 7296 | } |
| 7297 | |
| 7298 | /** |
| 7299 | * Populate `_nativeNode` on the rendered native/text component with the given |
no outgoing calls
no test coverage detected
searching dependent graphs…