(config)
| 18768 | } |
| 18769 | |
| 18770 | function hasValidKey(config) { |
| 18771 | { |
| 18772 | if (hasOwnProperty.call(config, 'key')) { |
| 18773 | var getter = Object.getOwnPropertyDescriptor(config, 'key').get; |
| 18774 | if (getter && getter.isReactWarning) { |
| 18775 | return false; |
| 18776 | } |
| 18777 | } |
| 18778 | } |
| 18779 | return config.key !== undefined; |
| 18780 | } |
| 18781 | |
| 18782 | function defineKeyPropWarningGetter(props, displayName) { |
| 18783 | var warnAboutAccessingKey = function () { |
no outgoing calls
no test coverage detected