name.js (597B)
1 // |reftest| skip-if(!this.hasOwnProperty('Atomics')) -- Atomics is not enabled unconditionally 2 // Copyright (C) 2015 André Bargull. All rights reserved. 3 // Copyright (C) 2017 Mozilla Corporation. All rights reserved. 4 // This code is governed by the BSD license found in the LICENSE file. 5 6 /*--- 7 esid: sec-atomics.islockfree 8 description: > 9 Atomics.isLockFree.name is "isLockFree". 10 includes: [propertyHelper.js] 11 features: [Atomics] 12 ---*/ 13 14 verifyProperty(Atomics.isLockFree, 'name', { 15 value: 'isLockFree', 16 enumerable: false, 17 writable: false, 18 configurable: true, 19 }); 20 21 reportCompare(0, 0);