/third_party/typescript/tests/baselines/reference/convertToAsyncFunction/ |
D | convertToAsyncFunction_NoRes3.ts | 4 return fetch('https://typescriptlang.org').catch(rej => console.log(rej)); 12 } catch (rej) { 13 return console.log(rej);
|
D | convertToAsyncFunction_NoRes2.ts | 4 return fetch('https://typescriptlang.org').then(undefined).catch(rej => console.log(rej)); 12 } catch (rej) { 13 return console.log(rej);
|
D | convertToAsyncFunction_CatchFollowedByThenMismatchTypes01.ts | 4 return fetch("https://typescriptlang.org").then(res).catch(rej).then(res); 11 function rej(reject){ function 23 result = await rej(reject); 32 function rej(reject){ function
|
D | convertToAsyncFunction_CatchFollowedByThenMatchingTypes01.ts | 4 return fetch("https://typescriptlang.org").then(res).catch(rej).then(res); 11 function rej(reject): number { function 23 result = await rej(reject); 32 function rej(reject): number { function
|
D | convertToAsyncFunction_CatchFollowedByThenMatchingTypes01NoAnnotations.ts | 4 return fetch("https://typescriptlang.org").then(res).catch(rej).then(res); 11 function rej(reject){ function 23 result = await rej(reject); 32 function rej(reject){ function
|
D | convertToAsyncFunction_CatchFollowedByThenMismatchTypes01.js | 4 return fetch("https://typescriptlang.org").then(res).catch(rej).then(res); 11 function rej(reject){ function 23 result = await rej(reject); 32 function rej(reject){
|
D | convertToAsyncFunction_CatchFollowedByThenMatchingTypes01NoAnnotations.js | 4 return fetch("https://typescriptlang.org").then(res).catch(rej).then(res); 11 function rej(reject){ function 23 result = await rej(reject); 32 function rej(reject){
|
D | convertToAsyncFunction_CatchFollowedByThenMismatchTypes02NoAnnotations.ts | 4 return fetch("https://typescriptlang.org").then(res).catch(rej).then(res); 11 function rej(reject){ function 23 result = await rej(reject); 32 function rej(reject){ function
|
D | convertToAsyncFunction_CatchFollowedByThenMismatchTypes02NoAnnotations.js | 4 return fetch("https://typescriptlang.org").then(res).catch(rej).then(res); 11 function rej(reject){ function 23 result = await rej(reject); 32 function rej(reject){
|
D | convertToAsyncFunction_CatchFollowedByThen.ts | 4 return fetch("https://typescriptlang.org").then(res).catch(rej).then(res); 11 function rej(reject){ function 23 result = await rej(reject); 32 function rej(reject){ function
|
D | convertToAsyncFunction_CatchFollowedByThen.js | 4 return fetch("https://typescriptlang.org").then(res).catch(rej).then(res); 11 function rej(reject){ function 23 result = await rej(reject); 32 function rej(reject){
|
D | convertToAsyncFunction_CatchFollowedByThenMismatchTypes02.ts | 4 return fetch("https://typescriptlang.org").then(res).catch(rej).then(res); 11 function rej(reject): Response{ function 23 result = await rej(reject); 32 function rej(reject): Response{ function
|
D | convertToAsyncFunction_CatchFollowedByThenMismatchTypes03.js | 4 return fetch("https://typescriptlang.org").then(res).catch(rej).then(res); 11 function rej(reject){ function 23 result = await rej(reject); 32 function rej(reject){
|
D | convertToAsyncFunction_CatchFollowedByThenMismatchTypes03.ts | 4 return fetch("https://typescriptlang.org").then(res).catch(rej).then(res); 11 function rej(reject){ function 23 result = await rej(reject); 32 function rej(reject){ function
|
D | convertToAsyncFunction_CatchAndRejRef.ts | 4 return fetch('https://typescriptlang.org').then(res, rej).catch(catch_err) 9 function rej(rejection){ function 23 return rej(rejection); 32 function rej(rejection){ function
|
D | convertToAsyncFunction_CatchFollowedByThenMismatchTypes04.ts | 14 return fetch("https://typescriptlang.org").then(res).catch(rej).then(res); 21 function rej(reject): a{ function 43 result = await rej(reject); 52 function rej(reject): a{ function
|
D | convertToAsyncFunction_CatchFollowedByThenMatchingTypes02NoAnnotations.ts | 4 return fetch("https://typescriptlang.org").then(res => 0).catch(rej => 1).then(res); 18 } catch (rej) {
|
D | convertToAsyncFunction_CatchFollowedByThenMatchingTypes02.ts | 4 return fetch("https://typescriptlang.org").then(res => 0).catch(rej => 1).then(res); 18 } catch (rej) {
|
D | convertToAsyncFunction_CatchFollowedByThenMatchingTypes02NoAnnotations.js | 4 return fetch("https://typescriptlang.org").then(res => 0).catch(rej => 1).then(res); 18 } catch (rej) {
|
/third_party/node/lib/internal/fs/ |
D | watchers.js | 322 let rej; 325 rej(new AbortError()); 333 rej = reject; 345 rej(error); 370 rej = reject;
|
/third_party/node/deps/npm/node_modules/tar/lib/ |
D | create.js | 54 const promise = new Promise((res, rej) => { 55 stream.on('error', rej) 57 p.on('error', rej)
|
/third_party/node/deps/npm/node_modules/infer-owner/ |
D | index.js | 6 const lstat = path => new Promise((res, rej) => 7 fs.lstat(path, (er, st) => er ? rej(er) : res(st)))
|
/third_party/libwebsockets/lib/roles/http/server/ |
D | lejp-conf.c | 275 struct lws_protocol_vhost_options *rej; in lejp_globals_cb() local 285 rej = lwsws_align(a); in lejp_globals_cb() 286 a->p += sizeof(*rej); in lejp_globals_cb() 289 rej->next = a->info->reject_service_keywords; in lejp_globals_cb() 290 a->info->reject_service_keywords = rej; in lejp_globals_cb() 291 rej->name = a->p; in lejp_globals_cb() 295 rej->value = a->p; in lejp_globals_cb() 296 rej->options = NULL; in lejp_globals_cb()
|
/third_party/node/lib/ |
D | util.js | 295 (rej) => process.nextTick(callbackifyOnRejected, rej, cb));
|
/third_party/rust/crates/nix/ |
D | .gitignore | 6 *.rej
|