Home
last modified time | relevance | path

Searched refs:Bluebird (Results 1 – 5 of 5) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DtransformNestedGeneratorsWithTry.types3 import * as Bluebird from 'bluebird';
4 >Bluebird : PromiseConstructor
6 async function a(): Bluebird<void> {
7 >a : () => Bluebird<void>
10 const b = async function b(): Bluebird<void> {
11 >b : () => Bluebird<void>
12 … b(): Bluebird<void> { try { await Bluebird.resolve(); // -- remove this and it compil…
13 >b : () => Bluebird<void>
16 await Bluebird.resolve(); // -- remove this and it compiles
17 >await Bluebird.resolve() : void
[all …]
DtransformNestedGeneratorsWithTry.symbols3 import * as Bluebird from 'bluebird';
4 >Bluebird : Symbol(Bluebird, Decl(main.ts, 1, 6))
6 async function a(): Bluebird<void> {
8 >Bluebird : Symbol(Bluebird, Decl(main.ts, 1, 6))
11 const b = async function b(): Bluebird<void> {
14 >Bluebird : Symbol(Bluebird, Decl(main.ts, 1, 6))
17 await Bluebird.resolve(); // -- remove this and it compiles
18 >Bluebird.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es2015.promise.d.ts, --, --), Decl(…
19 >Bluebird : Symbol(Bluebird, Decl(main.ts, 1, 6))
38 type Bluebird<T> = Promise<T>;
[all …]
DtransformNestedGeneratorsWithTry.js5 import * as Bluebird from 'bluebird';
6 async function a(): Bluebird<void> {
8 const b = async function b(): Bluebird<void> {
10 await Bluebird.resolve(); // -- remove this and it compiles
20 type Bluebird<T> = Promise<T>;
21 const Bluebird: typeof Promise; constant
22 export = Bluebird;
65 var Bluebird = require("bluebird"); variable
67 return __awaiter(this, void 0, Bluebird, function () {
74 return __awaiter(this, void 0, Bluebird, function () {
[all …]
/third_party/typescript/tests/cases/compiler/
DtransformNestedGeneratorsWithTry.ts5 import * as Bluebird from 'bluebird';
6 async function a(): Bluebird<void> {
8 const b = async function b(): Bluebird<void> {
10 await Bluebird.resolve(); // -- remove this and it compiles
20 type Bluebird<T> = Promise<T>; alias
21 const Bluebird: typeof Promise; constant
22 export = Bluebird;
/third_party/node/deps/npm/node_modules/promise-inflight/
Dinflight.js4 let Bluebird variable
6 Bluebird = require('bluebird')
8 Bluebird = Promise
14 return Bluebird.all([unique, doFly]).then(function (args) {
18 return Bluebird.all(unique).then(function (uniqueArr) {
28 active[unique] = (new Bluebird(function (resolve) {