()
| 8185 | var didWarnValueDefaultValue = false; |
| 8186 | |
| 8187 | function updateOptionsIfPendingUpdateAndMounted() { |
| 8188 | if (this._rootNodeID && this._wrapperState.pendingUpdate) { |
| 8189 | this._wrapperState.pendingUpdate = false; |
| 8190 | |
| 8191 | var props = this._currentElement.props; |
| 8192 | var value = LinkedValueUtils.getValue(props); |
| 8193 | |
| 8194 | if (value != null) { |
| 8195 | updateOptions(this, Boolean(props.multiple), value); |
| 8196 | } |
| 8197 | } |
| 8198 | } |
| 8199 | |
| 8200 | function getDeclarationErrorAddendum(owner) { |
| 8201 | if (owner) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…