Home
last modified time | relevance | path

Searched refs:generatorFunction (Results 1 – 8 of 8) sorted by relevance

/third_party/node/deps/npm/node_modules/bluebird/js/release/
Dgenerators.js32 function PromiseSpawn(generatorFunction, receiver, yieldHandler, stack) { argument
46 this._generatorFunction = generatorFunction;
188 Promise.coroutine = function (generatorFunction, options) { argument
189 if (typeof generatorFunction !== "function") {
196 var generator = generatorFunction.apply(this, arguments);
213 Promise.spawn = function (generatorFunction) { argument
215 if (typeof generatorFunction !== "function") {
218 var spawn = new PromiseSpawn(generatorFunction, this);
/third_party/node/deps/npm/node_modules/es-abstract/
DGetIntrinsic.js41 var generatorFunction = generator ? getProto(generator) : undefined; variable
90 '$ %GeneratorFunction%': generatorFunction,
91 '$ %GeneratorPrototype%': generatorFunction ? generatorFunction.prototype : undefined,
/third_party/typescript/tests/cases/compiler/
DbluebirdStaticThis.ts41 static coroutine<R>(dit: typeof Promise, generatorFunction: Function): Function;
43 static spawn<R>(dit: typeof Promise, generatorFunction: Function): Promise<R>;
/third_party/typescript/tests/baselines/reference/
DbluebirdStaticThis.js42 static coroutine<R>(dit: typeof Promise, generatorFunction: Function): Function;
44 static spawn<R>(dit: typeof Promise, generatorFunction: Function): Promise<R>;
DbluebirdStaticThis.errors.txt57 static coroutine<R>(dit: typeof Promise, generatorFunction: Function): Function;
59 static spawn<R>(dit: typeof Promise, generatorFunction: Function): Promise<R>;
DbluebirdStaticThis.types158 static coroutine<R>(dit: typeof Promise, generatorFunction: Function): Function;
159 >coroutine : <R>(dit: typeof Promise, generatorFunction: Function) => Function
162 >generatorFunction : Function
164 static spawn<R>(dit: typeof Promise, generatorFunction: Function): Promise<R>;
165 >spawn : <R>(dit: typeof Promise, generatorFunction: Function) => Promise<R>
168 >generatorFunction : Function
DbluebirdStaticThis.symbols225 static coroutine<R>(dit: typeof Promise, generatorFunction: Function): Function;
230 >generatorFunction : Symbol(generatorFunction, Decl(bluebirdStaticThis.ts, 40, 44))
234 static spawn<R>(dit: typeof Promise, generatorFunction: Function): Promise<R>;
239 >generatorFunction : Symbol(generatorFunction, Decl(bluebirdStaticThis.ts, 42, 40))
/third_party/node/deps/npm/node_modules/bluebird/js/browser/
Dbluebird.js2082 function PromiseSpawn(generatorFunction, receiver, yieldHandler, stack) {
2096 this._generatorFunction = generatorFunction;
2238 Promise.coroutine = function (generatorFunction, options) {
2239 if (typeof generatorFunction !== "function") {
2246 var generator = generatorFunction.apply(this, arguments);
2263 Promise.spawn = function (generatorFunction) {
2265 if (typeof generatorFunction !== "function") {
2268 var spawn = new PromiseSpawn(generatorFunction, this);