### Describe the problem In https://github.com/sveltejs/svelte/pull/13075 we generate code like: ``` const x = "foo"; $.template(`hello ${x}`); ``` It would be nicer if this were simply: ``` $.template(`hello foo`); ``` ### Describe the proposed solution Ideally this is implemented by esbuild (https://github.com/evanw/esbuild/issues/3570) and Oxc (https://github.com/oxc-project/oxc/issues/2646). Failing that, we may have to implement it ourselves ### Importance nice to have