Skip to content

Commit 61e794b

Browse files
Sebastien-AhkrinBethGriggs
authored andcommitted
lib: replace Set.prototype with SetPrototype primordial
PR-URL: #31161 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
1 parent 0229a24 commit 61e794b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/internal/process/per_thread.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const {
1212
ObjectFreeze,
1313
ObjectGetOwnPropertyDescriptors,
1414
RegExpPrototypeTest,
15+
SetPrototype,
1516
SetPrototypeHas,
1617
StringPrototypeReplace,
1718
} = primordials;
@@ -284,7 +285,7 @@ function buildAllowedFlags() {
284285
// each object.
285286
const nodeFlags = ObjectDefineProperties(
286287
new Set(allowedNodeEnvironmentFlags.map(trimLeadingDashes)),
287-
ObjectGetOwnPropertyDescriptors(Set.prototype)
288+
ObjectGetOwnPropertyDescriptors(SetPrototype)
288289
);
289290

290291
class NodeEnvironmentFlagsSet extends Set {

0 commit comments

Comments
 (0)