We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e7f4bad + 61349eb commit 47e18c3Copy full SHA for 47e18c3
src/core/ReactComponent.js
@@ -89,7 +89,11 @@ var ReactComponent = {
89
// We keep the old element and a reference to the pending element
90
// to track updates.
91
this._currentElement = element;
92
+ // These two fields are used by the DOM and ART diffing algorithms
93
+ // respectively. Instead of using expandos on components, we should be
94
+ // storing the state needed by the diffing algorithms elsewhere.
95
this._mountIndex = 0;
96
+ this._mountImage = null;
97
},
98
99
/**
0 commit comments