diff options
author | davidot <david.tuin@gmail.com> | 2021-06-13 18:09:34 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-06-14 09:57:06 +0100 |
commit | 6c13cc67c6391806b5e8345a02e247a796b5bd51 (patch) | |
tree | 1597534eb4c0dac279c999078c16df72394a9896 /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | 417f7523066be0c836c324e704dbaa0666f7fc6c (diff) | |
download | serenity-6c13cc67c6391806b5e8345a02e247a796b5bd51.zip |
LibJS: Implement Array.prototype.copyWithin generically
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 394b43ca26..2999509eb9 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -82,6 +82,7 @@ namespace JS { P(console) \ P(construct) \ P(constructor) \ + P(copyWithin) \ P(cos) \ P(cosh) \ P(count) \ |