mirror of https://github.com/tc39/test262.git
34 lines
802 B
JavaScript
34 lines
802 B
JavaScript
// Copyright 2018 Igalia, S.L. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-initializenumberformat
|
|
description: Checks the propagation of exceptions from the options for the NumberFormat constructor.
|
|
---*/
|
|
|
|
function CustomError() {}
|
|
|
|
const options = [
|
|
"localeMatcher",
|
|
"numberingSystem",
|
|
"style",
|
|
"currency",
|
|
"currencyDisplay",
|
|
"minimumIntegerDigits",
|
|
"minimumFractionDigits",
|
|
"maximumFractionDigits",
|
|
"minimumSignificantDigits",
|
|
"maximumSignificantDigits",
|
|
"useGrouping",
|
|
];
|
|
|
|
for (const option of options) {
|
|
assert.throws(CustomError, () => {
|
|
new Intl.NumberFormat("en", {
|
|
get [option]() {
|
|
throw new CustomError();
|
|
}
|
|
});
|
|
}, `Exception from ${option} getter should be propagated`);
|
|
}
|