(config)
| 18813 | } |
| 18814 | |
| 18815 | function hasValidKey(config) { |
| 18816 | { |
| 18817 | if (hasOwnProperty.call(config, 'key')) { |
| 18818 | var getter = Object.getOwnPropertyDescriptor(config, 'key').get; |
| 18819 | if (getter && getter.isReactWarning) { |
| 18820 | return false; |
| 18821 | } |
| 18822 | } |
| 18823 | } |
| 18824 | return config.key !== undefined; |
| 18825 | } |
| 18826 | |
| 18827 | function defineKeyPropWarningGetter(props, displayName) { |
| 18828 | var warnAboutAccessingKey = function () { |
no outgoing calls
no test coverage detected