Rick Waldron (2013-09-08T20:37:58.000Z)
On Sun, Sep 8, 2013 at 11:55 AM, Erik Arvidsson <erik.arvidsson at gmail.com>wrote:

> 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";
>

Subjectively, this is really hard to read, versus the curlies which provide
a visual boundary (also subjective)

Rick
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20130908/889a224d/attachment.html>
domenic at domenicdenicola.com (2013-09-25T01:35:38.941Z)
On Sun, Sep 8, 2013 at 11:55 AM, Erik Arvidsson <erik.arvidsson at gmail.com> wrote:

> I'm proposing we remove these curly braces, giving:
>
> ```js
> import a as b, c as d from "e";
> ```

Subjectively, this is really hard to read, versus the curlies which provide
a visual boundary (also subjective)