Skip to content

Commit 705e374

Browse files
sygV8 LUCI CQ
authored and
V8 LUCI CQ
committed
[symbol-as-weakmap-key] Ship the proposal
I2S with 3 LGTMs: https://groups.google.com/a/chromium.org/g/blink-dev/c/E6pDZP_TiBA/m/ZcXLwiz8AAAJ Bug: v8:12947 Change-Id: Ibce4abc8b0610afb2041d44cc9ed136db8b62c0d Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4004610 Commit-Queue: Shu-yu Guo <[email protected]> Reviewed-by: Camillo Bruni <[email protected]> Cr-Commit-Position: refs/heads/main@{#84128}
1 parent 9c0d3a4 commit 705e374

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

src/flags/flag-definitions.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -231,12 +231,11 @@ DEFINE_BOOL(harmony_shipping, true, "enable all shipped harmony features")
231231
#endif
232232

233233
// Features that are complete (but still behind the --harmony flag).
234-
#define HARMONY_STAGED_BASE(V) \
235-
V(harmony_rab_gsab, \
236-
"harmony ResizableArrayBuffer / GrowableSharedArrayBuffer") \
237-
V(harmony_array_grouping, "harmony array grouping") \
238-
V(harmony_change_array_by_copy, "harmony change-Array-by-copy") \
239-
V(harmony_symbol_as_weakmap_key, "harmony symbols as weakmap keys")
234+
#define HARMONY_STAGED_BASE(V) \
235+
V(harmony_rab_gsab, \
236+
"harmony ResizableArrayBuffer / GrowableSharedArrayBuffer") \
237+
V(harmony_array_grouping, "harmony array grouping") \
238+
V(harmony_change_array_by_copy, "harmony change-Array-by-copy")
240239

241240
#ifdef V8_INTL_SUPPORT
242241
#define HARMONY_STAGED(V) HARMONY_STAGED_BASE(V)
@@ -250,7 +249,8 @@ DEFINE_BOOL(harmony_shipping, true, "enable all shipped harmony features")
250249
V(harmony_atomics, "harmony atomics") \
251250
V(harmony_class_static_blocks, "harmony static initializer blocks") \
252251
V(harmony_array_find_last, "harmony array find last helpers") \
253-
V(harmony_import_assertions, "harmony import assertions")
252+
V(harmony_import_assertions, "harmony import assertions") \
253+
V(harmony_symbol_as_weakmap_key, "harmony symbols as weakmap keys")
254254

255255
#ifdef V8_INTL_SUPPORT
256256
#define HARMONY_SHIPPING(V) \

test/mjsunit/es6/collections.js

-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ function TestInvalidCalls(m) {
7777
assertThrows(function () { m.set(null, 0) }, TypeError);
7878
assertThrows(function () { m.set(0, 0) }, TypeError);
7979
assertThrows(function () { m.set('a-key', 0) }, TypeError);
80-
assertThrows(function () { m.set(Symbol(), 0) }, TypeError);
8180
}
8281
TestInvalidCalls(new WeakMap);
8382

test/mjsunit/harmony/weakrefs/basics.js

-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
assertThrows(() => fg.register(1, "holdings"), TypeError, message);
5252
assertThrows(() => fg.register(false, "holdings"), TypeError, message);
5353
assertThrows(() => fg.register("foo", "holdings"), TypeError, message);
54-
assertThrows(() => fg.register(Symbol(), "holdings"), TypeError, message);
5554
assertThrows(() => fg.register(null, "holdings"), TypeError, message);
5655
assertThrows(() => fg.register(undefined, "holdings"), TypeError, message);
5756
})();
@@ -97,7 +96,6 @@
9796
assertThrows(() => fg.unregister(1), TypeError);
9897
assertThrows(() => fg.unregister(1n), TypeError);
9998
assertThrows(() => fg.unregister('one'), TypeError);
100-
assertThrows(() => fg.unregister(Symbol()), TypeError);
10199
assertThrows(() => fg.unregister(true), TypeError);
102100
assertThrows(() => fg.unregister(false), TypeError);
103101
assertThrows(() => fg.unregister(undefined), TypeError);
@@ -121,7 +119,6 @@
121119
assertThrows(() => new WeakRef(1), TypeError, message);
122120
assertThrows(() => new WeakRef(false), TypeError, message);
123121
assertThrows(() => new WeakRef("foo"), TypeError, message);
124-
assertThrows(() => new WeakRef(Symbol()), TypeError, message);
125122
assertThrows(() => new WeakRef(null), TypeError, message);
126123
assertThrows(() => new WeakRef(undefined), TypeError, message);
127124
})();

0 commit comments

Comments
 (0)