Insert async keyword as last modifier (#27491)

This commit is contained in:
Benjamin Lichtman
2018-10-01 17:43:17 -07:00
committed by Andy
parent 70e26fc701
commit f356cd6c89
5 changed files with 40 additions and 1 deletions
@@ -1254,6 +1254,11 @@ function [#|main2|]() {
.then(() => { console.log("."); return delay(500); })
.then(() => { console.log("."); return delay(500); })
}
`);
_testConvertToAsyncFunction("convertToAsyncFunction_exportModifier", `
export function [#|foo|]() {
return fetch('https://typescriptlang.org').then(s => console.log(s));
}
`);
});