2019-10-17 16:32:00 +02:00
|
|
|
// Copyright (C) 2019 Leo Balter. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
esid: sec-Intl.DisplayNames
|
|
|
|
description: >
|
|
|
|
Return abrupt completion from GetOption fallback
|
|
|
|
info: |
|
2020-07-11 04:19:34 +02:00
|
|
|
Intl.DisplayNames ( locales , options )
|
2019-10-17 16:32:00 +02:00
|
|
|
|
|
|
|
1. If NewTarget is undefined, throw a TypeError exception.
|
|
|
|
2. Let displayNames be ? OrdinaryCreateFromConstructor(NewTarget, "%DisplayNamesPrototype%",
|
|
|
|
« [[InitializedDisplayNames]], [[Locale]], [[Style]], [[Type]], [[Fallback]], [[Fields]] »).
|
|
|
|
...
|
2020-07-11 04:19:34 +02:00
|
|
|
4. Let options be ? ToObject(options).
|
2019-10-17 16:32:00 +02:00
|
|
|
...
|
2020-07-11 04:19:34 +02:00
|
|
|
12. Let type be ? GetOption(options, "type", "string", « "language", "region", "script", "currency" », undefined).
|
|
|
|
13. If type is undefined, throw a TypeError exception.
|
2019-10-17 16:32:00 +02:00
|
|
|
...
|
|
|
|
15. Let fallback be ? GetOption(options, "fallback", "string", « "code", "none" », "code").
|
|
|
|
...
|
|
|
|
|
|
|
|
GetOption ( options, property, type, values, fallback )
|
|
|
|
|
|
|
|
1. Let value be ? Get(options, property).
|
|
|
|
...
|
2021-07-27 23:37:22 +02:00
|
|
|
features: [Intl.DisplayNames]
|
2019-10-17 16:32:00 +02:00
|
|
|
locale: [en]
|
|
|
|
---*/
|
|
|
|
|
2020-07-11 04:19:34 +02:00
|
|
|
var options = { type: 'language' };
|
2019-10-17 16:32:00 +02:00
|
|
|
Object.defineProperty(options, 'fallback', {
|
|
|
|
get() { throw new Test262Error(); },
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.throws(Test262Error, () => {
|
|
|
|
new Intl.DisplayNames('en', options);
|
|
|
|
});
|