ES6 timetable and current status

2014-01-27 Thread Maciej Jaros
Hi. I'm trying to figure out what is the current status of ES6 especially that next draft was released. As I understand this is not yet a Candidate Draft this presentation mentions http://slid.es/rafaelweinstein/tc39-process? So my question is - is there some timetable/roadmap for the ES6?

Re: multiple modules with the same name

2014-01-27 Thread Maciej Jaros
Sam Tobin-Hochstadt (2014-01-27 23:50): This is absolutely necessary for polyfilling. Imagine that some browser has an ok-but-not-complete implementation of the X library, but you want to use jQuery 17, which requires a better version. You need to be able to replace X with a polyfilled update

Re: ES6 problem with private name objects syntax

2014-01-13 Thread Maciej Jaros
Sorry for not answering sooner... Rick Waldron (2014-01-08 23:24): On Wed, Jan 8, 2014 at 3:59 AM, Maciej Jaros e...@wp.pl mailto:e...@wp.pl wrote: To my understanding private name objects are supposed to make private properties and functions available for new classes syntax

ES6 problem with private name objects syntax

2014-01-08 Thread Maciej Jaros
To my understanding private name objects are supposed to make private properties and functions available for new classes syntax in ECMAScript 6 standard. But the syntax is rather strange: ``` var myPrivate = new Name(); class Test { constructor(foo) { this[myPrivate] = foo;