ECMAScript.next features in Firefox?
# Jake Verbaten (14 years ago)
Do we have a similar list for the features in chromium that are enabled through the harmony flag? ( codereview.chromium.org/9008031 )
# Axel Rauschmayer (14 years ago)
Paul Irish did a code search for that:
# Andreas Rossberg (14 years ago)
On 25 December 2011 13:26, Axel Rauschmayer <axel at rauschma.de> wrote:
Paul Irish did a code search for that:
To elaborate, the --harmony flag currently activates the following experimental features for V8:
- block scoping, let, const, block functions (harmony:block_scoped_bindings, etc)
- proxies, though not direct proxies yet (i.e., harmony:proxies)
- maps and sets (harmony:simple_maps_and_sets)
- weak maps (harmony:weak_maps)
- typeof null reform (harmony:typeof_null)
On the browser side, that should become functional in Chrome 17 (some of it is in 16 already, but incomplete/buggy) by setting --js-flags="--harmony". If you are on the Chrome dev channel, you should also see it show up on chrome://flags soon.
Is there a list somewhere of ECMAScript.next features that have already been implemented in Firefox?
Thanks!
Axel