Kevin Smith (2014-01-29T16:40:43.000Z)
>
> // a.js
>
> var foo = 1;
> export foo as 'a.b.c';
>
> // b.js
>
> import 'a.b.c' as foo from "a.js"
>
>
That is not valid.  Export binding names (where you have 'a.b.c') must be
IdentifierName.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20140129/7a89d540/attachment.html>
domenic at domenicdenicola.com (2014-02-04T20:53:29.514Z)
> ```js
> // a.js
>
> var foo = 1;
> export foo as 'a.b.c';
>
> // b.js
>
> import 'a.b.c' as foo from "a.js"
> ```

That is not valid.  Export binding names (where you have 'a.b.c') must be
IdentifierName.