Erik Arvidsson (2013-09-08T15:55:13.000Z)
http://wiki.ecmascript.org/doku.php?id=harmony:modules#syntax

Currently ImportSpecifierSet is proposed to start with "{" and end
with "}". This made a lot more sense when we reused the destructuring
syntax. Now that we are using "as", these curlies look like a remnant
from the past.

import {a as b, c as d} from "e";

I'm proposing we remove these curly braces, giving:

import a as b, c as d from "e";

Same issue applies to ExportSpecifierSet.

-- 
erik
domenic at domenicdenicola.com (2013-09-25T01:34:55.693Z)
http://wiki.ecmascript.org/doku.php?id=harmony:modules#syntax

Currently ImportSpecifierSet is proposed to start with "{" and end
with "}". This made a lot more sense when we reused the destructuring
syntax. Now that we are using "as", these curlies look like a remnant
from the past.

```js
import {a as b, c as d} from "e";
```

I'm proposing we remove these curly braces, giving:

```js
import a as b, c as d from "e";
```

Same issue applies to ExportSpecifierSet.