mirror of
https://github.com/tc39/test262.git
synced 2025-09-28 20:48:43 +02:00
17 lines
463 B
JavaScript
17 lines
463 B
JavaScript
// 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.or
|
|
description: >
|
|
Atomics.or.name is "or".
|
|
includes: [propertyHelper.js]
|
|
---*/
|
|
|
|
assert.sameValue(Atomics.or.name, "or");
|
|
|
|
verifyNotEnumerable(Atomics.or, "name");
|
|
verifyNotWritable(Atomics.or, "name");
|
|
verifyConfigurable(Atomics.or, "name");
|