## Stack trace ``` Don't know where to find this ``` ## Steps to reproduce 1. Copy the code below in a file and hover over async or await keywords ```ts async () => { await Promise.resolve(true); } ``` ## Additional Context It doesn't panic with non-arrow-function such as, it works as expected, the problem happens only with async arrow functions ```ts async function() { await Promise.resolve(true); } ```