Description
Current syntax:
ImportCall[Yield, Await]:
import(AssignmentExpression[+In, ?Yield, ?Await])
Proposed syntax:
ImportCall[Yield, Await]:
import Arguments[+In, ?Yield, ?Await]
Currently import("a", { })
is SyntaxError and it's harder for developers to do "feature detecting" in future. The module attribute proposal is going to add 2nd parameter for ImportCall
but developers can't write code like this:
try {
return await import("./a.js", { attribute: something })
} catch(e) {
return import("./a.js")
}
Because it is a SyntaxError. IMO it's better to allow more than 1 parameter and throw a runtime error so it will be easier for the developers in the future.
Since the module attribute is just stage 1, make this change in that proposal will be too late. Too many versions of the browser will only accept the exact 1 argument and it's impossible to write the feature detect above.
It's better to extend this syntax asap for the future (and throw at runtime for now) and it won't break anything (because it just makes invalid syntax valid).