aboutsummaryrefslogtreecommitdiff
path: root/node_modules/react-dom/lib/ReactChildReconciler.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/react-dom/lib/ReactChildReconciler.js')
-rw-r--r--node_modules/react-dom/lib/ReactChildReconciler.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/node_modules/react-dom/lib/ReactChildReconciler.js b/node_modules/react-dom/lib/ReactChildReconciler.js
index cf37bd63b..e89f763d3 100644
--- a/node_modules/react-dom/lib/ReactChildReconciler.js
+++ b/node_modules/react-dom/lib/ReactChildReconciler.js
@@ -59,8 +59,8 @@ var ReactChildReconciler = {
* @return {?object} A set of child instances.
* @internal
*/
- instantiateChildren: function (nestedChildNodes, transaction, context, selfDebugID // 0 in production and for roots
- ) {
+ instantiateChildren: function (nestedChildNodes, transaction, context, selfDebugID) // 0 in production and for roots
+ {
if (nestedChildNodes == null) {
return null;
}
@@ -86,8 +86,8 @@ var ReactChildReconciler = {
* @return {?object} A new set of child instances.
* @internal
*/
- updateChildren: function (prevChildren, nextChildren, mountImages, removedNodes, transaction, hostParent, hostContainerInfo, context, selfDebugID // 0 in production and for roots
- ) {
+ updateChildren: function (prevChildren, nextChildren, mountImages, removedNodes, transaction, hostParent, hostContainerInfo, context, selfDebugID) // 0 in production and for roots
+ {
// We currently don't have a way to track moves here but if we use iterators
// instead of for..in we can zip the iterators and check if an item has
// moved.
@@ -147,7 +147,6 @@ var ReactChildReconciler = {
}
}
}
-
};
module.exports = ReactChildReconciler; \ No newline at end of file