* Returns the message used for a missing required dictionary member. * @param {string} dictionaryName Dictionary identifier. * @param {string} key Dictionary member identifier. * @returns {string}
(dictionaryName, key)
| 672 | * @returns {string} |
| 673 | */ |
| 674 | function missingDictionaryMemberMessage(dictionaryName, key) { |
| 675 | return `cannot be converted to '${dictionaryName}' because ` + |
| 676 | `'${key}' is required in '${dictionaryName}'.`; |
| 677 | } |
| 678 | |
| 679 | /** |
| 680 | * Creates a converter for a Web IDL dictionary type. |
no outgoing calls
no test coverage detected
searching dependent graphs…