diff options
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 640298b1f8..0675720124 100644 --- a/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h +++ b/Userland/Libraries/LibJS/Runtime/CommonPropertyNames.h @@ -359,6 +359,7 @@ struct CommonPropertyNames { PropertyName register_ { "register", PropertyName::StringMayBeNumber::No }; PropertyName return_ { "return", PropertyName::StringMayBeNumber::No }; PropertyName throw_ { "throw", PropertyName::StringMayBeNumber::No }; + PropertyName xor_ { "xor", PropertyName::StringMayBeNumber::No }; #define __ENUMERATE(x) PropertyName x { #x, PropertyName::StringMayBeNumber::No }; ENUMERATE_STANDARD_PROPERTY_NAMES(__ENUMERATE) #undef __ENUMERATE |