length.js (403B)
1 // Copyright 2016 Mozilla Corporation. All rights reserved. 2 // This code is governed by the license found in the LICENSE file. 3 4 /*--- 5 esid: sec-Intl.PluralRules 6 description: Intl.PluralRules.length. 7 author: Zibi Braniecki 8 includes: [propertyHelper.js] 9 ---*/ 10 11 verifyProperty(Intl.PluralRules, 'length', { 12 value: 0, 13 writable: false, 14 enumerable: false, 15 configurable: true 16 }); 17 18 reportCompare(0, 0);