Skip to content

Commit 686808f

Browse files
committed
clarify versions
1 parent adf4086 commit 686808f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/core-js/modules/esnext.weak-map.get-or-insert-computed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var FORCED = IS_PURE || !function () {
1515
// eslint-disable-next-line es/no-weak-map, no-throw-literal -- testing
1616
if (WeakMap.prototype.getOrInsertComputed) new WeakMap().getOrInsertComputed(1, function () { throw 1; });
1717
} catch (error) {
18-
// FF144 Nightly bug
18+
// FF144 Nightly - Beta 3 bug
1919
// https://bugzilla.mozilla.org/show_bug.cgi?id=1988369
2020
return error instanceof TypeError;
2121
}

tests/compat/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2080,7 +2080,7 @@ GLOBAL.tests = {
20802080
try {
20812081
new WeakMap().getOrInsertComputed(1, function () { throw 1; });
20822082
} catch (error) {
2083-
// FF144 Nightly bug
2083+
// FF144 Nightly - Beta 3 bug
20842084
// https://bugzilla.mozilla.org/show_bug.cgi?id=1988369
20852085
return error instanceof TypeError;
20862086
}

0 commit comments

Comments
 (0)