mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
refactor(ext/webidl): align error messages (#25625)
Towards https://github.com/denoland/deno/issues/25269
This commit is contained in:
parent
0ea71abdef
commit
3035cdddb8
2 changed files with 6 additions and 6 deletions
|
@ -712,7 +712,7 @@ function requiredArguments(length, required, prefix) {
|
|||
if (length < required) {
|
||||
const errMsg = `${prefix ? prefix + ": " : ""}${required} argument${
|
||||
required === 1 ? "" : "s"
|
||||
} required, but only ${length} present.`;
|
||||
} required, but only ${length} present`;
|
||||
throw new TypeError(errMsg);
|
||||
}
|
||||
}
|
||||
|
@ -818,7 +818,7 @@ function createDictionaryConverter(name, ...dictionaries) {
|
|||
} else if (member.required) {
|
||||
throw makeException(
|
||||
TypeError,
|
||||
`can not be converted to '${name}' because '${key}' is required in '${name}'.`,
|
||||
`can not be converted to '${name}' because '${key}' is required in '${name}'`,
|
||||
prefix,
|
||||
context,
|
||||
);
|
||||
|
@ -845,7 +845,7 @@ function createEnumConverter(name, values) {
|
|||
throw new TypeError(
|
||||
`${
|
||||
prefix ? prefix + ": " : ""
|
||||
}The provided value '${S}' is not a valid enum value of type ${name}.`,
|
||||
}The provided value '${S}' is not a valid enum value of type ${name}`,
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -925,7 +925,7 @@ function createRecordConverter(keyConverter, valueConverter) {
|
|||
if (type(V) !== "Object") {
|
||||
throw makeException(
|
||||
TypeError,
|
||||
"can not be converted to dictionary.",
|
||||
"can not be converted to dictionary",
|
||||
prefix,
|
||||
context,
|
||||
);
|
||||
|
@ -996,7 +996,7 @@ function createInterfaceConverter(name, prototype) {
|
|||
if (!ObjectPrototypeIsPrototypeOf(prototype, V) || V[brand] !== brand) {
|
||||
throw makeException(
|
||||
TypeError,
|
||||
`is not of type ${name}.`,
|
||||
`is not of type ${name}`,
|
||||
prefix,
|
||||
context,
|
||||
);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[WILDCARD]error: Uncaught (in promise) TypeError: Failed to construct 'Event': 1 argument required, but only 0 present.
|
||||
[WILDCARD]error: Uncaught (in promise) TypeError: Failed to construct 'Event': 1 argument required, but only 0 present
|
||||
new Event();
|
||||
^
|
||||
at [WILDCARD]
|
||||
|
|
Loading…
Reference in a new issue