You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
680 B
18 lines
680 B
'use strict';
|
|
// https://github.com/tc39/proposal-explicit-resource-management
|
|
var call = require('../internals/function-call');
|
|
var defineBuiltIn = require('../internals/define-built-in');
|
|
var getMethod = require('../internals/get-method');
|
|
var hasOwn = require('../internals/has-own-property');
|
|
var wellKnownSymbol = require('../internals/well-known-symbol');
|
|
var IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;
|
|
|
|
var DISPOSE = wellKnownSymbol('dispose');
|
|
|
|
if (!hasOwn(IteratorPrototype, DISPOSE)) {
|
|
defineBuiltIn(IteratorPrototype, DISPOSE, function () {
|
|
var $return = getMethod(this, 'return');
|
|
if ($return) call($return, this);
|
|
});
|
|
}
|