// Copyright (C) 2018 Ujjwal Sharma. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-intl.numberformat.prototype-@@tostringtag description: > Tests that Intl.NumberFormat.prototype[@@toStringTag] has the required attributes. includes: [propertyHelper.js] ---*/ verifyProperty(Intl.NumberFormat.prototype, Symbol.toStringTag, { value: 'Intl.NumberFormat', writable: false, enumerable: false, configurable: true }); reportCompare(0, 0);