jeffrifwald / es6-fiddle-web

Fiddlin' with ECMAScript6.
https://es6fiddle.net
MIT License
49 stars 77 forks source link

Document Libraries Allowing ES6 Compiling #4

Closed backspaces closed 10 years ago

backspaces commented 10 years ago

I may have missed it, but Traceur is not enough to have the coverage of ES6 you have. Are you using additional libraries to compile array comprehensions, for example? If so, could you mention them?

Thanks

jeffrifwald commented 10 years ago

I'll direct you to: https://github.com/google/traceur-compiler/blob/master/src/options.js#L268

Traceur is constantly changing and has experimental support for several ES6 features. I do use the 'experimental' option in the compiler.

jeffrifwald commented 10 years ago

Also @backspaces, I found many of the features by playing with the expected syntax from the ES6 specs. This is part of the reason I created ES6 fiddle; it is really easy to play with new stuff. For example, you can use template literals, but the current documentation for Traceur does not mention it.

backspaces commented 10 years ago

Thanks, very helpful! The compatibility table: http://kangax.github.io/es5-compat-table/es6/ doesn't show all the features, apparently.