diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-05-29 23:52:17 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-05-29 23:42:08 +0100 |
commit | 09233b9e4139baedb516659fa30876edcb7bf436 (patch) | |
tree | 1c13329773cb861b36e9516a1d12d27cd48c398d /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | 96ee5e36edabb81be3e15c43dd0e2c0ee4289cc4 (diff) | |
download | serenity-09233b9e4139baedb516659fa30876edcb7bf436.zip |
LibJS: Add Date.prototype.{get, set}Year()
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h index 8c4f3c4861..552695acf8 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -133,6 +133,7 @@ namespace JS { P(getUTCMinutes) \ P(getUTCMonth) \ P(getUTCSeconds) \ + P(getYear) \ P(global) \ P(globalThis) \ P(groups) \ @@ -207,6 +208,7 @@ namespace JS { P(setMinutes) \ P(setPrototypeOf) \ P(setSeconds) \ + P(setYear) \ P(shift) \ P(sign) \ P(sin) \ |