Cyril Auburtin (2018-04-04T16:22:21.000Z)
Could
```js
from 'name' import something;
```

be added to ES module grammar?

which would work like the current
```js
import something from 'name';
```

The advantage is to sort more easily import, and have autocompletion of
imported identifiers
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20180404/15dc8b86/attachment.html>
cyril.auburtin at gmail.com (2018-04-04T16:26:09.677Z)
Could
```js
from 'name' import something;
```

be added to ES module grammar?

which would work like the current
```js
import something from 'name';
```

The advantage is to sort more easily import, and have autocompletion of
imported identifiers

edit: Arg, I messed up the title