Skip to content

Commit 97c062b

Browse files
marjakhCommit Bot
authored and
Commit Bot
committed
[Atomics.waitAsync] Ship Atomics.waitAsync
Bug: v8:10239 Change-Id: I3671d3bd5f4f6df1ca01237158b8f284b5e3d7ac Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2410186 Reviewed-by: Shu-yu Guo <[email protected]> Commit-Queue: Marja Hölttä <[email protected]> Cr-Commit-Position: refs/heads/master@{#69891}
1 parent 05749d8 commit 97c062b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/flags/flag-definitions.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,8 @@ DEFINE_IMPLICATION(harmony_weak_refs_with_cleanup_some, harmony_weak_refs)
234234
#endif
235235

236236
// Features that are complete (but still behind --harmony/es-staging flag).
237-
#define HARMONY_STAGED_BASE(V) \
238-
V(harmony_top_level_await, "harmony top level await") \
239-
V(harmony_atomics_waitasync, "harmony Atomics.waitAsync")
237+
#define HARMONY_STAGED_BASE(V) \
238+
V(harmony_top_level_await, "harmony top level await")
240239

241240
#ifdef V8_INTL_SUPPORT
242241
#define HARMONY_STAGED(V) \
@@ -259,7 +258,8 @@ DEFINE_IMPLICATION(harmony_weak_refs_with_cleanup_some, harmony_weak_refs)
259258
V(harmony_private_methods, "harmony private methods in class literals") \
260259
V(harmony_weak_refs, "harmony weak references") \
261260
V(harmony_string_replaceall, "harmony String.prototype.replaceAll") \
262-
V(harmony_logical_assignment, "harmony logical assignment")
261+
V(harmony_logical_assignment, "harmony logical assignment") \
262+
V(harmony_atomics_waitasync, "harmony Atomics.waitAsync")
263263

264264
#ifdef V8_INTL_SUPPORT
265265
#define HARMONY_SHIPPING(V) \

0 commit comments

Comments
 (0)