Skip to content

Commit 6f890fd

Browse files
mathiasbynensCommit Bot
authored andcommitted
Ship RegExp Unicode property escapes
Intent to ship: https://groups.google.com/d/msg/v8-users/isa2JrstEbE/i6UvFO7RBwAJ BUG=v8:4743 Change-Id: I62cdc6fa1f114fc8be26c5cf354c45a15ce49ab7 Reviewed-on: https://chromium-review.googlesource.com/761776 Reviewed-by: Adam Klein <adamk@chromium.org> Commit-Queue: Mathias Bynens <mathias@chromium.org> Cr-Commit-Position: refs/heads/master@{#49312}
1 parent 84dfd73 commit 6f890fd

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/flag-definitions.h

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -203,23 +203,23 @@ DEFINE_IMPLICATION(harmony_import_meta, harmony_dynamic_import)
203203
// Features that are complete (but still behind --harmony/es-staging flag).
204204
#define HARMONY_STAGED(V) \
205205
V(harmony_function_tostring, "harmony Function.prototype.toString") \
206-
V(harmony_regexp_property, "harmony Unicode regexp property classes") \
207206
V(harmony_restrict_constructor_return, \
208207
"harmony disallow non undefined primitive return value from class " \
209208
"constructor") \
210209
V(harmony_dynamic_import, "harmony dynamic import")
211210

212211
// Features that are shipping (turned on by default, but internal flag remains).
213-
#define HARMONY_SHIPPING_BASE(V) \
214-
V(harmony_strict_legacy_accessor_builtins, \
215-
"treat __defineGetter__ and related functions as strict") \
216-
V(harmony_sharedarraybuffer, "harmony sharedarraybuffer") \
217-
V(harmony_regexp_dotall, "harmony regexp dotAll flag") \
218-
V(harmony_regexp_lookbehind, "harmony regexp lookbehind") \
219-
V(harmony_regexp_named_captures, "harmony regexp named captures") \
220-
V(harmony_async_iteration, "harmony async iteration") \
221-
V(harmony_template_escapes, \
222-
"harmony invalid escapes in tagged template literals") \
212+
#define HARMONY_SHIPPING_BASE(V) \
213+
V(harmony_strict_legacy_accessor_builtins, \
214+
"treat __defineGetter__ and related functions as strict") \
215+
V(harmony_sharedarraybuffer, "harmony sharedarraybuffer") \
216+
V(harmony_regexp_dotall, "harmony regexp dotAll flag") \
217+
V(harmony_regexp_lookbehind, "harmony regexp lookbehind") \
218+
V(harmony_regexp_named_captures, "harmony regexp named captures") \
219+
V(harmony_regexp_property, "harmony Unicode regexp property classes") \
220+
V(harmony_async_iteration, "harmony async iteration") \
221+
V(harmony_template_escapes, \
222+
"harmony invalid escapes in tagged template literals") \
223223
V(harmony_promise_finally, "harmony Promise.prototype.finally")
224224

225225
#ifdef V8_INTL_SUPPORT

0 commit comments

Comments
 (0)