Describe the bug
An await expression in an {@html ...} block causes a syntax error — this code...
<div>{@html await 'this should work'}</div>
...results in this output:
export default function App($$renderer) {
$$renderer.push(`<div>${$.html((await $.save('this should work'))())}</div>`);
}
Reproduction
link