(value)
| 490 | return '' + value; |
| 491 | } |
| 492 | function checkKeyStringCoercion(value) { |
| 493 | { |
| 494 | if (willCoercionThrow(value)) { |
| 495 | error('The provided key is an unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value)); |
| 496 | |
| 497 | return testStringCoercion(value); // throw (to help callers find troubleshooting comments) |
| 498 | } |
| 499 | } |
| 500 | } |
| 501 | |
| 502 | function getWrappedName(outerType, innerType, wrapperName) { |
| 503 | var displayName = outerType.displayName; |
no test coverage detected
searching dependent graphs…