summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/DisplayNames/proto.js
blob: 7ef279226b669df12906f930649be45520fc8da0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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: >
  The internal prototype of Intl.DisplayNames
features: [Intl.DisplayNames]
---*/

var proto = Object.getPrototypeOf(Intl.DisplayNames);

assert.sameValue(proto, Function.prototype);

reportCompare(0, 0);