Skip to content

Commit fafbacd

Browse files
joyeecheungrichardlau
authored andcommitted
deps: V8: cherry-pick 9a98f96b6d68
Original commit message: [symbol-as-weakmap-key] Stage the feature Bug: v8:12947 Change-Id: I0a151a6b301ee93675cc9f87a4fa24cb1be76462 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3928061 Auto-Submit: Shu-yu Guo <syg@chromium.org> Commit-Queue: Marja Hölttä <marja@chromium.org> Reviewed-by: Marja Hölttä <marja@chromium.org> Cr-Commit-Position: refs/heads/main@{#83483} Refs: v8/v8@9a98f96 PR-URL: #51004 Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
1 parent d4a530e commit fafbacd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
# Reset this number to 0 on major V8 upgrades.
3838
# Increment by one for each non-official patch applied to deps/v8.
39-
'v8_embedder_string': '-node.30',
39+
'v8_embedder_string': '-node.31',
4040

4141
##### V8 defaults for Node.js #####
4242

deps/v8/src/flags/flag-definitions.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -307,8 +307,7 @@ DEFINE_BOOL(harmony_shipping, true, "enable all shipped harmony features")
307307
"harmony ResizableArrayBuffer / GrowableSharedArrayBuffer") \
308308
V(harmony_temporal, "Temporal") \
309309
V(harmony_shadow_realm, "harmony ShadowRealm") \
310-
V(harmony_struct, "harmony structs and shared structs") \
311-
V(harmony_symbol_as_weakmap_key, "harmony symbols as weakmap keys")
310+
V(harmony_struct, "harmony structs and shared structs")
312311

313312
#ifdef V8_INTL_SUPPORT
314313
#define HARMONY_INPROGRESS(V) \
@@ -319,8 +318,9 @@ DEFINE_BOOL(harmony_shipping, true, "enable all shipped harmony features")
319318
#endif
320319

321320
// Features that are complete (but still behind the --harmony flag).
322-
#define HARMONY_STAGED_BASE(V) \
323-
V(harmony_array_grouping, "harmony array grouping")
321+
#define HARMONY_STAGED_BASE(V) \
322+
V(harmony_array_grouping, "harmony array grouping") \
323+
V(harmony_symbol_as_weakmap_key, "harmony symbols as weakmap keys")
324324

325325
#ifdef V8_INTL_SUPPORT
326326
#define HARMONY_STAGED(V) \

0 commit comments

Comments
 (0)