mirror of https://github.com/tc39/test262.git
22 lines
591 B
JavaScript
22 lines
591 B
JavaScript
// Copyright (C) 2018 Leo Balter. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-symbol.asynciterator
|
|
description: >
|
|
`Symbol.asyncIterator` property descriptor
|
|
info: |
|
|
This property has the attributes { [[Writable]]: false, [[Enumerable]]:
|
|
false, [[Configurable]]: false }.
|
|
includes: [propertyHelper.js]
|
|
features: [Symbol.asyncIterator]
|
|
---*/
|
|
|
|
assert.sameValue(typeof Symbol.asyncIterator, 'symbol');
|
|
|
|
verifyProperty(Symbol, 'asyncIterator', {
|
|
enumerable: false,
|
|
writable: false,
|
|
configurable: false,
|
|
});
|