TypeScript/tests/cases/fourslash/codeFixAwaitInSyncFunction9.ts
Sharon Rolel c0bdd12c4c add fixAwaitInSyncFunction code fix (#21069)
* add fixAwaitInSyncFunction code fix

* Just insert the keyword

* only one codefix

* remove comment

* Change explicit return type T to Promise<T>

* Review changes

* Change codefix message
2018-01-09 17:15:08 -08:00

18 lines
354 B
TypeScript

/// <reference path='fourslash.ts' />
////class Foo {
//// bar(): string {
//// await Promise.resolve('baz');
//// }
////}
verify.codeFix({
description: "Add async modifier to containing function",
newFileContent:
`class Foo {
async bar(): Promise<string> {
await Promise.resolve('baz');
}
}`,
});