Just looking for symmetry with the "export var a" syntax.

But yeah, maybe the proposed syntax is a bit tricky, and is probably not a very 
good idea.

> On Dec 15, 2014, at 10:45 PM, Erik Arvidsson <erik.arvids...@gmail.com> wrote:
> 
> Keeping syntax minimal, simple and unsurprising is part of our job.
> 
> Why do you want this?
> 
> 
> On Mon, Dec 15, 2014, 09:41 Caridy Patino <car...@gmail.com 
> <mailto:car...@gmail.com>> wrote:
> No.
> 
> On Dec 15, 2014, at 6:26 AM, Glen Huang <curvedm...@gmail.com 
> <mailto:curvedm...@gmail.com>> wrote:
> 
>> What about this:
>> 
>> export default var a, b, c;
>> 
>> is equivalent to 
>> 
>> var a;
>> export default a;
>> 
>> export var b, c;
>> 
>> 
>>> On Dec 13, 2014, at 12:44 PM, Kevin Smith <zenpars...@gmail.com 
>>> <mailto:zenpars...@gmail.com>> wrote:
>>> 
>>> From https://people.mozilla.org/~jorendorff/es6-draft.html#sec-exports 
>>> <https://people.mozilla.org/~jorendorff/es6-draft.html#sec-exports>, it 
>>> seems that "export default var a = 1;” is not valid in es6. I wonder why 
>>> that’s the case. You can already do "var a = 1;export default a;”. Why not 
>>> make "export default var a = 1;” valid?
>>> 
>>> Exporting a variable declaration list as "default" wouldn't make sense:  
>>> for one, the list can have more than one element:
>>> 
>>>     export default var a, b, c;  // Non-sensical
>>> 
>>> 
>> 
>> _______________________________________________
>> es-discuss mailing list
>> es-discuss@mozilla.org <mailto:es-discuss@mozilla.org>
>> https://mail.mozilla.org/listinfo/es-discuss 
>> <https://mail.mozilla.org/listinfo/es-discuss>
> _______________________________________________
> es-discuss mailing list
> es-discuss@mozilla.org <mailto:es-discuss@mozilla.org>
> https://mail.mozilla.org/listinfo/es-discuss 
> <https://mail.mozilla.org/listinfo/es-discuss>

_______________________________________________
es-discuss mailing list
es-discuss@mozilla.org
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to