summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/NumberFormat/intl-legacy-constructed-symbol-on-unwrap.js
blob: aac9c4fc1e92cedd0cc2179564301b1f99745e30 (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-unwrapnumberformat
description: >
    Tests that [[FallbackSymbol]]'s [[Description]] is "IntlLegacyConstructedSymbol" if normative optional is implemented.
author: Yusuke Suzuki
features: [intl-normative-optional]
---*/

let object = new Intl.NumberFormat();
let newObject = Intl.NumberFormat.call(object);
let symbol = null;
let error = null;
try {
    let proxy = new Proxy(newObject, {
        get(target, property) {
            symbol = property;
            return target[property];
        }
    });
    Intl.NumberFormat.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);