You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// these should be fineconstx=`hello world`;constx=`hello world`asconst;letx=`hello ${foobar} world`;// these are not allowedconstx=tpl`hello world`;constx=`hello ${foobar} world`;// if foobar is a specific string literal type, x will be a merger of these strings.constx=`hello ${foobar} world`asconst;
However right now all are disallowed.
Ref denoland/deno_graph#457 and denoland/deno_graph#458
The text was updated successfully, but these errors were encountered: