summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2021-06-17 14:12:38 +0300
committerLinus Groh <mail@linusgroh.de>2021-06-17 13:20:18 +0100
commit37340aa599e177597f81748a14951c0d3d38efaf (patch)
tree311f2ec4450442539728005d1f09dcebca4a6381 /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h
parentd1c109be964b0990deb2e460a73f841a70b7c70e (diff)
downloadserenity-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.h1
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) \