[regexp] Stage Unicode Sets

Advance --harmony-regexp-unicode-sets to staged.

Bug: v8:11935
Change-Id: I12492760dc1826e192d66aa305c05f510b938db2
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4194195
Auto-Submit: Patrick Thier <pthier@chromium.org>
Commit-Queue: Mathias Bynens <mathias@chromium.org>
Reviewed-by: Mathias Bynens <mathias@chromium.org>
Commit-Queue: Patrick Thier <pthier@chromium.org>
Cr-Commit-Position: refs/heads/main@{#85473}
This commit is contained in:
pthier 2023-01-25 13:59:07 +01:00 committed by V8 LUCI CQ
parent ab2766a082
commit 0c780c0f8d

View File

@ -224,7 +224,6 @@ DEFINE_BOOL(harmony_shipping, true, "enable all shipped harmony features")
V(harmony_temporal, "Temporal") \
V(harmony_shadow_realm, "harmony ShadowRealm") \
V(harmony_struct, "harmony structs, shared structs, and shared arrays") \
V(harmony_regexp_unicode_sets, "harmony RegExp Unicode Sets") \
V(harmony_json_parse_with_source, "harmony json parse with source")
#ifdef V8_INTL_SUPPORT
@ -237,8 +236,9 @@ DEFINE_BOOL(harmony_shipping, true, "enable all shipped harmony features")
#endif
// Features that are complete (but still behind the --harmony flag).
#define HARMONY_STAGED_BASE(V) \
V(harmony_rab_gsab_transfer, "harmony ArrayBuffer.transfer") \
#define HARMONY_STAGED_BASE(V) \
V(harmony_regexp_unicode_sets, "harmony RegExp Unicode Sets") \
V(harmony_rab_gsab_transfer, "harmony ArrayBuffer.transfer") \
V(harmony_array_grouping, "harmony array grouping")
DEFINE_IMPLICATION(harmony_rab_gsab_transfer, harmony_rab_gsab)