2024-07-29 20:28:59 +02:00
|
|
|
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
2024-07-26 17:36:41 +02:00
|
|
|
esid: sec-symbol.asyncdispose
|
2024-07-29 20:28:59 +02:00
|
|
|
description: >
|
|
|
|
`Symbol.asyncDispose` property descriptor
|
|
|
|
info: |
|
|
|
|
This property has the attributes { [[Writable]]: false, [[Enumerable]]:
|
|
|
|
false, [[Configurable]]: false }.
|
|
|
|
includes: [propertyHelper.js]
|
|
|
|
features: [explicit-resource-management]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
assert.sameValue(typeof Symbol.asyncDispose, 'symbol');
|
2024-10-14 11:25:05 +02:00
|
|
|
verifyProperty(Symbol, 'asyncDispose', {
|
|
|
|
writable: false,
|
|
|
|
enumerable: false,
|
|
|
|
configurable: false,
|
|
|
|
});
|