| 378 | }; |
| 379 | |
| 380 | const createDefaultProps = prop => |
| 381 | withComments( |
| 382 | j.property( |
| 383 | 'init', |
| 384 | j.identifier(DEFAULT_PROPS_KEY), |
| 385 | pickReturnValueOrCreateIIFE(prop.value) |
| 386 | ), |
| 387 | prop |
| 388 | ); |
| 389 | |
| 390 | // Collects `childContextTypes`, `contextTypes`, `displayName`, and `propTypes`; |
| 391 | // simplifies `getDefaultProps` or converts it to an IIFE; |
no test coverage detected