We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8faf06e commit 4b79231Copy full SHA for 4b79231
test/cases/await.js
@@ -22,3 +22,8 @@ const complexAwaited = () => {
22
23
const y = await (1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + complexAwaited());
24
console.info(y);
25
+
26
+const asyncInlineMethod = async (x = 123) => {
27
+ console.info('long fn expr');
28
+ await 123; // force await check
29
+};
0 commit comments