TypeScript/tests/cases/fourslash/codeFixAddMissingAwait_initializer3.ts
Andrew Branch 5d04250ea8
Improve “Add missing await” fix-all (#32922)
* Improve codeFixAll for add missing await

* Improve add missing await for initializers and fix-all

* Fix when only one side of a binary expression can have its initializer fixed
2019-08-20 16:53:28 -07:00

32 lines
617 B
TypeScript

/// <reference path="fourslash.ts" />
////async function fn(a: number, b: Promise<number>) {
//// const x = b;
//// const y = b;
//// fn(x, b);
//// fn(y, b);
//// x.toFixed();
//// y.then;
////
//// b + b;
//// x + b;
//// x + x.toFixed();
////}
verify.codeFixAll({
fixAllDescription: ts.Diagnostics.Fix_all_expressions_possibly_missing_await.message,
fixId: "addMissingAwait",
newFileContent:
`async function fn(a: number, b: Promise<number>) {
const x = await b;
const y = b;
fn(x, b);
fn(await y, b);
x.toFixed();
y.then;
await b + await b;
x + await b;
x + x.toFixed();
}`
});