mirror of https://github.com/tc39/test262.git
40 lines
947 B
JavaScript
40 lines
947 B
JavaScript
|
// Copyright (C) 2018 Kevin Gibbons. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
|
||
|
/*---
|
||
|
description: Closes iterators when they return entries which are null.
|
||
|
esid: sec-object.fromentries
|
||
|
features: [Symbol.iterator, Object.fromEntries]
|
||
|
---*/
|
||
|
|
||
|
var returned = false;
|
||
|
var iterable = {
|
||
|
[Symbol.iterator]: function() {
|
||
|
var advanced = false;
|
||
|
return {
|
||
|
next: function() {
|
||
|
if (advanced) {
|
||
|
throw new Test262Error('should only advance once');
|
||
|
}
|
||
|
advanced = true;
|
||
|
return {
|
||
|
done: false,
|
||
|
value: 'null',
|
||
|
};
|
||
|
},
|
||
|
return: function() {
|
||
|
if (returned) {
|
||
|
throw new Test262Error('should only return once');
|
||
|
}
|
||
|
returned = true;
|
||
|
},
|
||
|
};
|
||
|
},
|
||
|
};
|
||
|
|
||
|
assert.throws(TypeError, function() {
|
||
|
Object.fromEntries(iterable);
|
||
|
});
|
||
|
|
||
|
assert(returned, 'iterator should be closed when entry is null');
|