summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-08-01 18:36:15 +0100
committerLinus Groh <mail@linusgroh.de>2021-08-01 20:31:31 +0100
commita06bd451d429be4f3fda7e02be074d430edb78a1 (patch)
treee1cd4411ae0eb84941ddd484171605ed327b1acf /Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h
parent36c79c29899862e8b63b96c381acc65f203dea1f (diff)
downloadserenity-a06bd451d429be4f3fda7e02be074d430edb78a1.zip
LibJS: Implement Temporal.Now.zonedDateTimeISO()
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h')
-rw-r--r--Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h
index b9d2ae05dd..8ead23741b 100644
--- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h
+++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h
@@ -414,7 +414,8 @@ namespace JS {
P(writable) \
P(year) \
P(years) \
- P(zonedDateTime)
+ P(zonedDateTime) \
+ P(zonedDateTimeISO)
struct CommonPropertyNames {
PropertyName and_ { "and", PropertyName::StringMayBeNumber::No };