Open
Description
Version
19.3.0
Platform
Darwin * 21.6.0 Darwin Kernel Version 21.6.0: Sat Jun 18 17:07:22 PDT 2022; root:xnu-8020.140.41~1/RELEASE_ARM64_T6000 arm64
Subsystem
No response
What steps will reproduce the bug?
Run node
and enter
Object.freeze(global);console.log(AbortController)
or
Object.freeze(global);console.log(MessageChannel)
How often does it reproduce? Is there a required condition?
since v19.3
What is the expected behavior?
No error, just like for v19.2
What do you see instead?
Welcome to Node.js v19.3.0.
Type ".help" for more information.
> Object.freeze(global);console.log(MessageChannel)
Uncaught TypeError: Cannot redefine property: MessageChannel
at defineProperty (<anonymous>)
at set MessageChannel (node:internal/util:511:7)
at get MessageChannel (node:internal/util:525:9)
Additional information
No response