== should parse the await expression ==
async function test() {
    await   test;
}

[expect]
async function test() {
    await test;
}

== should parse a top level await ==
await    test   ;

[expect]
await test;
