proto.js (381B)
1 // Copyright (C) 2019 Leo Balter. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-Intl.DisplayNames 6 description: > 7 The internal prototype of Intl.DisplayNames 8 features: [Intl.DisplayNames] 9 ---*/ 10 11 var proto = Object.getPrototypeOf(Intl.DisplayNames); 12 13 assert.sameValue(proto, Function.prototype); 14 15 reportCompare(0, 0);