(outerType, innerType, wrapperName)
| 520 | } |
| 521 | |
| 522 | function getWrappedName(outerType, innerType, wrapperName) { |
| 523 | var functionName = innerType.displayName || innerType.name || ''; |
| 524 | return outerType.displayName || (functionName !== '' ? wrapperName + "(" + functionName + ")" : wrapperName); |
| 525 | } |
| 526 | |
| 527 | function getComponentName(type) { |
| 528 | if (type == null) { |