(outerType, innerType, wrapperName)
| 1472 | } |
| 1473 | |
| 1474 | function getWrappedName(outerType, innerType, wrapperName) { |
| 1475 | var functionName = innerType.displayName || innerType.name || ''; |
| 1476 | return outerType.displayName || (functionName !== '' ? wrapperName + "(" + functionName + ")" : wrapperName); |
| 1477 | } |
| 1478 | |
| 1479 | function getComponentName(type) { |
| 1480 | if (type == null) { |