John Lenz (2014-01-29T16:35:28.000Z)
I'm wondering if this is valid (or should be):

// a.js

var foo = 1;
export foo as 'a.b.c';

// b.js

import 'a.b.c' as foo from "a.js"

The reason I ask is Modules appear to support have any valid property name
(anything) as an export if the Module is defined directly using "newModule".
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20140129/5f231c0c/attachment.html>
domenic at domenicdenicola.com (2014-02-04T20:53:04.610Z)
I'm wondering if this is valid (or should be):

```js
// a.js

var foo = 1;
export foo as 'a.b.c';

// b.js

import 'a.b.c' as foo from "a.js"
```

The reason I ask is Modules appear to support have any valid property name
(anything) as an export if the Module is defined directly using "newModule".