1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:27:34 +00:00

LibJS: Add the Object.prototype.__proto__ native accessor property

This is part of the Annex B extension of the specification.
This commit is contained in:
Idan Horowitz 2021-06-17 14:12:38 +03:00 committed by Linus Groh
parent d1c109be96
commit 37340aa599
3 changed files with 42 additions and 0 deletions

View file

@ -12,6 +12,7 @@
namespace JS {
#define ENUMERATE_STANDARD_PROPERTY_NAMES(P) \
P(__proto__) \
P(BYTES_PER_ELEMENT) \
P(BigInt) \
P(Boolean) \