(children, array, prefix, func, context)
| 4290 | } |
| 4291 | |
| 4292 | function mapIntoWithKeyPrefixInternal(children, array, prefix, func, context) { |
| 4293 | var escapedPrefix = ''; |
| 4294 | if (prefix != null) { |
| 4295 | escapedPrefix = escapeUserProvidedKey(prefix) + '/'; |
| 4296 | } |
| 4297 | var traverseContext = MapBookKeeping.getPooled(array, escapedPrefix, func, context); |
| 4298 | traverseAllChildren(children, mapSingleChildIntoContext, traverseContext); |
| 4299 | MapBookKeeping.release(traverseContext); |
| 4300 | } |
| 4301 | |
| 4302 | /** |
| 4303 | * Maps children that are typically specified as `props.children`. |
no test coverage detected