TypeScript/tests/baselines/reference/convertToAsyncFunction/convertToAsyncFunction_emptyCatch2.js
Ron Buckton 6f7f3b1775
Minor fixes to "Convert To Async" refactor (#45536)
* Minor fixes to convertToAsync

* Back out on nested return in inner continuation

* Baseline update

* Verify type argument for call can be used, add a few more early exit shortcuts
2021-09-01 13:13:12 -07:00

13 lines
227 B
TypeScript

// ==ORIGINAL==
function /*[#|*/f/*|]*/() {
return Promise.resolve(0).then(x => x).catch();
}
// ==ASYNC FUNCTION::Convert to async function==
async function f() {
const x = await Promise.resolve(0);
return x;
}