(text)
| 8652 | * @internal |
| 8653 | */ |
| 8654 | var ReactDOMTextComponent = function (text) { |
| 8655 | // TODO: This is really a ReactText (ReactNode), not a ReactElement |
| 8656 | this._currentElement = text; |
| 8657 | this._stringText = '' + text; |
| 8658 | // ReactDOMComponentTree uses these: |
| 8659 | this._nativeNode = null; |
| 8660 | this._nativeParent = null; |
| 8661 | |
| 8662 | // Properties |
| 8663 | this._domID = null; |
| 8664 | this._mountIndex = 0; |
| 8665 | this._closingComment = null; |
| 8666 | this._commentNodes = null; |
| 8667 | }; |
| 8668 | |
| 8669 | _assign(ReactDOMTextComponent.prototype, { |
| 8670 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…