blob: 61b9452d9a1ddb4780f4d043e04ae946c12aeebd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// Copyright 2020 Apple Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-unwrapdatetimeformat
description: >
Tests that [[FallbackSymbol]]'s [[Description]] is "IntlLegacyConstructedSymbol" if normative optional is implemented.
author: Yusuke Suzuki
features: [intl-normative-optional]
---*/
let object = new Intl.DateTimeFormat();
let newObject = Intl.DateTimeFormat.call(object);
let symbol = null;
let error = null;
try {
let proxy = new Proxy(newObject, {
get(target, property) {
symbol = property;
return target[property];
}
});
Intl.DateTimeFormat.prototype.resolvedOptions.call(proxy);
} catch (e) {
// If normative optional is not implemented, an error will be thrown.
error = e;
assert(error instanceof TypeError);
}
if (error === null) {
assert.sameValue(typeof symbol, "symbol");
assert.sameValue(symbol.description, "IntlLegacyConstructedSymbol");
}
reportCompare(0, 0);
|