-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.45.3 breaks self
descriptor
#24683
Comments
Looks like the global var segregator (interceptor) in The same issue seems happening to {
value: Window {},
writable: true,
enumerable: true,
configurable: true
} @lucacasonato Do you have any clue on this? |
Some notes:
It looks strange that |
This is a bug in V8, caused by assuming that an object can only have one |
It seems it's fixed in 1.46.0. |
globalThis.self
should be a getter, but 1.45.3 breaks it - here it's a usual property:Before that:
That enforces
core-js
to load a polyfill and patch it.The text was updated successfully, but these errors were encountered: