Commit f54ee7bd authored by hablich's avatar hablich Committed by Commit bot

Revert of [es6] ship regexp sticky flag.

Reason for revert:
This causes compatibility issues, as documented in https://bugs.chromium.org/p/v8/issues/detail?id=4617#c9

Original issue's description:
> [es6] ship regexp sticky flag.
>
> R=littledan@chromium.org
> BUG=v8:4342
> LOG=Y
>
> Committed: https://crrev.com/86c2dd4042dc9ce293e004234eb094f2b51d9640
> Cr-Commit-Position: refs/heads/master@{#32826}

TBR=yangguo@chromium.org,littledan@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:4342
LOG=Y

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

Cr-Commit-Position: refs/heads/master@{#32932}
parent ea9ecff0
......@@ -216,7 +216,8 @@ DEFINE_IMPLICATION(es_staging, harmony_regexp_lookbehind)
#define HARMONY_STAGED(V) \
V(harmony_destructuring_assignment, "harmony destructuring assignment") \
V(harmony_sloppy, "harmony features in sloppy mode") \
V(harmony_sloppy_let, "harmony let in sloppy mode")
V(harmony_sloppy_let, "harmony let in sloppy mode") \
V(harmony_regexps, "harmony regular expression extensions")
// Features that are shipping (turned on by default, but internal flag remains).
#define HARMONY_SHIPPING(V) \
......@@ -226,8 +227,8 @@ DEFINE_IMPLICATION(es_staging, harmony_regexp_lookbehind)
V(harmony_object_observe, "harmony Object.observe") \
V(harmony_tolength, "harmony ToLength") \
V(harmony_tostring, "harmony toString") \
V(harmony_completion, "harmony completion value semantics") \
V(harmony_regexps, "harmony regular expression extensions")
V(harmony_completion, "harmony completion value semantics")
// 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