diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-06-12 17:41:13 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-06-12 18:39:23 +0100 |
commit | bd9e20ef791a614deec2a7e37f3be1657f75816a (patch) | |
tree | 905f08dbad6400d3ebbca61511f2813cec49e4b9 /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | a2da3f97eff59dd6778de085b7d4d7d7ea0f250a (diff) | |
download | serenity-bd9e20ef791a614deec2a7e37f3be1657f75816a.zip |
LibJS: Add the Object.getOwnPropertySymbols method
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 9f38eb08a5..d17dd77527 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -137,6 +137,7 @@ namespace JS { P(getMonth) \ P(getOwnPropertyDescriptor) \ P(getOwnPropertyNames) \ + P(getOwnPropertySymbols) \ P(getPrototypeOf) \ P(getSeconds) \ P(getTime) \ |