mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 02:00:12 +08:00
* Bump the npm group with 2 updates Bumps the npm group with 2 updates: [eslint](https://github.com/eslint/eslint) and [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import). Updates `eslint` from 8.45.0 to 8.46.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.45.0...v8.46.0) Updates `eslint-plugin-import` from 2.27.5 to 2.28.0 - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.27.5...v2.28.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm - dependency-name: eslint-plugin-import dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm ... Signed-off-by: dependabot[bot] <support@github.com> * Update checked-in dependencies --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
122 lines
4.0 KiB
JavaScript
122 lines
4.0 KiB
JavaScript
'use strict';
|
|
|
|
var GetIntrinsic = require('get-intrinsic');
|
|
|
|
var $TypeError = GetIntrinsic('%TypeError%');
|
|
|
|
var AsyncFromSyncIteratorContinuation = require('./AsyncFromSyncIteratorContinuation');
|
|
var Call = require('./Call');
|
|
var CreateIterResultObject = require('./CreateIterResultObject');
|
|
var Get = require('./Get');
|
|
var GetMethod = require('./GetMethod');
|
|
var IteratorNext = require('./IteratorNext');
|
|
var OrdinaryObjectCreate = require('./OrdinaryObjectCreate');
|
|
var Type = require('./Type');
|
|
|
|
var SLOT = require('internal-slot');
|
|
|
|
var assertRecord = require('../helpers/assertRecord');
|
|
|
|
var $AsyncFromSyncIteratorPrototype = GetIntrinsic('%AsyncFromSyncIteratorPrototype%', true) || {
|
|
next: function next(value) {
|
|
var O = this; // step 1
|
|
|
|
SLOT.assert(O, '[[SyncIteratorRecord]]'); // step 2
|
|
|
|
var argsLength = arguments.length;
|
|
|
|
return new Promise(function (resolve) { // step 3
|
|
var syncIteratorRecord = SLOT.get(O, '[[SyncIteratorRecord]]'); // step 4
|
|
var result;
|
|
if (argsLength > 0) {
|
|
result = IteratorNext(syncIteratorRecord, value); // step 5.a
|
|
} else { // step 6
|
|
result = IteratorNext(syncIteratorRecord);// step 6.a
|
|
}
|
|
resolve(AsyncFromSyncIteratorContinuation(result)); // step 8
|
|
});
|
|
},
|
|
'return': function () {
|
|
var O = this; // step 1
|
|
|
|
SLOT.assert(O, '[[SyncIteratorRecord]]'); // step 2
|
|
|
|
var valueIsPresent = arguments.length > 0;
|
|
var value = valueIsPresent ? arguments[0] : void undefined;
|
|
|
|
return new Promise(function (resolve, reject) { // step 3
|
|
var syncIterator = SLOT.get(O, '[[SyncIteratorRecord]]')['[[Iterator]]']; // step 4
|
|
var iteratorReturn = GetMethod(syncIterator, 'return'); // step 5
|
|
|
|
if (typeof iteratorReturn === 'undefined') { // step 7
|
|
var iterResult = CreateIterResultObject(value, true); // step 7.a
|
|
Call(resolve, undefined, [iterResult]); // step 7.b
|
|
return;
|
|
}
|
|
var result;
|
|
if (valueIsPresent) { // step 8
|
|
result = Call(iteratorReturn, syncIterator, [value]); // step 8.a
|
|
} else { // step 9
|
|
result = Call(iteratorReturn, syncIterator); // step 9.a
|
|
}
|
|
if (Type(result) !== 'Object') { // step 11
|
|
Call(reject, undefined, [new $TypeError('Iterator `return` method returned a non-object value.')]); // step 11.a
|
|
return;
|
|
}
|
|
|
|
resolve(AsyncFromSyncIteratorContinuation(result)); // step 12
|
|
});
|
|
},
|
|
'throw': function () {
|
|
var O = this; // step 1
|
|
|
|
SLOT.assert(O, '[[SyncIteratorRecord]]'); // step 2
|
|
|
|
var valueIsPresent = arguments.length > 0;
|
|
var value = valueIsPresent ? arguments[0] : void undefined;
|
|
|
|
return new Promise(function (resolve, reject) { // step 3
|
|
var syncIterator = SLOT.get(O, '[[SyncIteratorRecord]]')['[[Iterator]]']; // step 4
|
|
|
|
var throwMethod = GetMethod(syncIterator, 'throw'); // step 5
|
|
|
|
if (typeof throwMethod === 'undefined') { // step 7
|
|
Call(reject, undefined, [value]); // step 7.a
|
|
return;
|
|
}
|
|
|
|
var result;
|
|
if (valueIsPresent) { // step 8
|
|
result = Call(throwMethod, syncIterator, [value]); // step 8.a
|
|
} else { // step 9
|
|
result = Call(throwMethod, syncIterator); // step 9.a
|
|
}
|
|
if (Type(result) !== 'Object') { // step 11
|
|
Call(reject, undefined, [new $TypeError('Iterator `throw` method returned a non-object value.')]); // step 11.a
|
|
return;
|
|
}
|
|
|
|
resolve(AsyncFromSyncIteratorContinuation(result/* , promiseCapability */)); // step 12
|
|
});
|
|
}
|
|
};
|
|
|
|
// https://262.ecma-international.org/14.0/#sec-createasyncfromsynciterator
|
|
|
|
module.exports = function CreateAsyncFromSyncIterator(syncIteratorRecord) {
|
|
assertRecord(Type, 'Iterator Record', 'syncIteratorRecord', syncIteratorRecord);
|
|
|
|
// var asyncIterator = OrdinaryObjectCreate(%AsyncFromSyncIteratorPrototype%, « [[SyncIteratorRecord]] »); // step 1
|
|
var asyncIterator = OrdinaryObjectCreate($AsyncFromSyncIteratorPrototype);
|
|
|
|
SLOT.set(asyncIterator, '[[SyncIteratorRecord]]', syncIteratorRecord); // step 2
|
|
|
|
var nextMethod = Get(asyncIterator, 'next'); // step 3
|
|
|
|
return { // steps 3-4
|
|
'[[Iterator]]': asyncIterator,
|
|
'[[NextMethod]]': nextMethod,
|
|
'[[Done]]': false
|
|
};
|
|
};
|