Closed Conduitry closed 4 years ago
From https://github.com/sveltejs/svelte/issues/4267
cr.print(cr.x`await (a || b)`).code
returns
await a || b
which is incorrect, as await has a higher precedence than ||.
await
||
From https://github.com/sveltejs/svelte/issues/4267
returns
which is incorrect, as
await
has a higher precedence than||
.