(bookKeeping, child, name)
| 1199 | } |
| 1200 | |
| 1201 | function forEachSingleChild(bookKeeping, child, name) { |
| 1202 | var func = bookKeeping.func, |
| 1203 | context = bookKeeping.context; |
| 1204 | func.call(context, child, bookKeeping.count++); |
| 1205 | } |
| 1206 | /** |
| 1207 | * Iterates through children that are typically specified as `props.children`. |
| 1208 | * |
nothing calls this directly
no outgoing calls
no test coverage detected