Commit 1913de80 authored by caitpotter88's avatar caitpotter88 Committed by Commit bot

[es7] ship --harmony-exponentiation-operator

Change --harmony-exponentiation-operator to be enabled by default.

Intent-to-Ship: https://groups.google.com/forum/#!topic/v8-users/W6rKEsdQHXE

BUG=v8:3915
LOG=N
R=adamk@chromium.org, rossberg@chromium.org

Review URL: https://codereview.chromium.org/1895113003

Cr-Commit-Position: refs/heads/master@{#35593}
parent 57e2eec9
......@@ -209,8 +209,7 @@ DEFINE_IMPLICATION(es_staging, move_object_start)
V(harmony_tailcalls, "harmony tail calls") \
V(harmony_object_values_entries, "harmony Object.values / Object.entries") \
V(harmony_object_own_property_descriptors, \
"harmony Object.getOwnPropertyDescriptors()") \
V(harmony_exponentiation_operator, "harmony exponentiation operator `**`")
"harmony Object.getOwnPropertyDescriptors()")
// Features that are shipping (turned on by default, but internal flag remains).
#define HARMONY_SHIPPING(V) \
......@@ -223,7 +222,8 @@ DEFINE_IMPLICATION(es_staging, move_object_start)
V(harmony_regexp_subclass, "harmony regexp subclassing") \
V(harmony_restrictive_declarations, \
"harmony limitations on sloppy mode function declarations") \
V(harmony_species, "harmony Symbol.species")
V(harmony_species, "harmony Symbol.species") \
V(harmony_exponentiation_operator, "harmony exponentiation operator `**`")
// Once a shipping feature has proved stable in the wild, it will be dropped
// from HARMONY_SHIPPING, all occurrences of the FLAG_ variable are removed,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment