diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-09-01 22:08:15 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-09-02 17:56:42 +0100 |
commit | 17639a42ae4e097e77c2de2e20984779ed69a739 (patch) | |
tree | 20bd17ca9f9ec5f3dc1a3a4940623a3a89530c05 /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | |
parent | 990dd037d2ba029332619641ed43d4896b4a679d (diff) | |
download | serenity-17639a42ae4e097e77c2de2e20984779ed69a739.zip |
LibJS: Implement the Intl.Locale constructor
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h index e790fac620..9e13c7959f 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -84,6 +84,7 @@ namespace JS { P(call) \ P(callee) \ P(caller) \ + P(caseFirst) \ P(cause) \ P(cbrt) \ P(ceil) \ @@ -93,6 +94,7 @@ namespace JS { P(clear) \ P(clz32) \ P(codePointAt) \ + P(collation) \ P(compareExchange) \ P(compile) \ P(concat) \ @@ -224,6 +226,7 @@ namespace JS { P(hasOwn) \ P(hasOwnProperty) \ P(hour) \ + P(hourCycle) \ P(hours) \ P(hypot) \ P(id) \ @@ -262,6 +265,7 @@ namespace JS { P(join) \ P(keyFor) \ P(keys) \ + P(language) \ P(lastIndex) \ P(lastIndexOf) \ P(length) \ @@ -297,6 +301,8 @@ namespace JS { P(negated) \ P(next) \ P(now) \ + P(numberingSystem) \ + P(numeric) \ P(of) \ P(offset) \ P(offsetNanoseconds) \ @@ -325,6 +331,7 @@ namespace JS { P(reason) \ P(reduce) \ P(reduceRight) \ + P(region) \ P(reject) \ P(repeat) \ P(resolve) \ @@ -335,6 +342,7 @@ namespace JS { P(round) \ P(roundingIncrement) \ P(roundingMode) \ + P(script) \ P(seal) \ P(second) \ P(seconds) \ |