blob: 40cd2a6d1faaa85afd4ce36802f615c25f8de8bf [file] [log] [blame]
// Copyright (C) 2015 André Bargull. All rights reserved.
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-atomics.load
description: >
Atomics.load.name is "load".
includes: [propertyHelper.js]
---*/
assert.sameValue(Atomics.load.name, "load");
verifyNotEnumerable(Atomics.load, "name");
verifyNotWritable(Atomics.load, "name");
verifyConfigurable(Atomics.load, "name");