2020-03-18 21:07:42 +01:00
|
|
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
esid: sec-atomics.waitasync
|
|
|
|
description: >
|
|
|
|
Atomics.waitAsync.name is "waitAsync".
|
|
|
|
includes: [propertyHelper.js]
|
2020-05-27 21:11:06 +02:00
|
|
|
features: [Atomics.waitAsync, Atomics]
|
2020-03-18 21:07:42 +01:00
|
|
|
---*/
|
|
|
|
|
|
|
|
verifyProperty(Atomics.waitAsync, 'name', {
|
|
|
|
value: 'waitAsync',
|
|
|
|
enumerable: false,
|
|
|
|
writable: false,
|
|
|
|
configurable: true,
|
|
|
|
});
|