diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-06-17 14:12:38 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-06-17 13:20:18 +0100 |
commit | 37340aa599e177597f81748a14951c0d3d38efaf (patch) | |
tree | 311f2ec4450442539728005d1f09dcebca4a6381 /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | d1c109be964b0990deb2e460a73f841a70b7c70e (diff) | |
download | serenity-37340aa599e177597f81748a14951c0d3d38efaf.zip |
LibJS: Add the Object.prototype.__proto__ native accessor property
This is part of the Annex B extension of the specification.
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h index 445f3e120d..a2bbf9e2b1 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -12,6 +12,7 @@ namespace JS { #define ENUMERATE_STANDARD_PROPERTY_NAMES(P) \ + P(__proto__) \ P(BYTES_PER_ELEMENT) \ P(BigInt) \ P(Boolean) \ |