(value)
| 283 | } |
| 284 | } |
| 285 | function checkHtmlStringCoercion(value) { |
| 286 | { |
| 287 | if (willCoercionThrow(value)) { |
| 288 | error('The provided HTML markup uses a value of unsupported type %s.' + ' This value must be coerced to a string before before using it here.', typeName(value)); |
| 289 | |
| 290 | return testStringCoercion(value); // throw (to help callers find troubleshooting comments) |
| 291 | } |
| 292 | } |
| 293 | } |
| 294 | function checkFormFieldValueStringCoercion(value) { |
| 295 | { |
| 296 | if (willCoercionThrow(value)) { |
no test coverage detected
searching dependent graphs…