Title: [281790] trunk/Source/_javascript_Core
Revision
281790
Author
ross.kirsl...@sony.com
Date
2021-08-30 20:02:37 -0700 (Mon, 30 Aug 2021)

Log Message

[JSC] Host functions and custom getters should be lowerCamelCase
https://bugs.webkit.org/show_bug.cgi?id=229695

Reviewed by Yusuke Suzuki.

For some reason, the host functions and custom getters for Intl (and JSONObject) were written in UpperCamelCase.

* runtime/IntlCollatorConstructor.cpp:
* runtime/IntlCollatorPrototype.cpp:
* runtime/IntlDateTimeFormatConstructor.cpp:
* runtime/IntlDateTimeFormatPrototype.cpp:
* runtime/IntlDisplayNamesConstructor.cpp:
* runtime/IntlDisplayNamesPrototype.cpp:
* runtime/IntlListFormatConstructor.cpp:
* runtime/IntlListFormatPrototype.cpp:
* runtime/IntlLocalePrototype.cpp:
* runtime/IntlNumberFormatConstructor.cpp:
* runtime/IntlNumberFormatPrototype.cpp:
* runtime/IntlPluralRulesConstructor.cpp:
* runtime/IntlPluralRulesPrototype.cpp:
* runtime/IntlRelativeTimeFormatConstructor.cpp:
* runtime/IntlRelativeTimeFormatPrototype.cpp:
* runtime/IntlSegmentIteratorPrototype.cpp:
* runtime/IntlSegmenterConstructor.cpp:
* runtime/IntlSegmenterPrototype.cpp:
* runtime/IntlSegmentsPrototype.cpp:
* runtime/JSONObject.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (281789 => 281790)


--- trunk/Source/_javascript_Core/ChangeLog	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-08-31 03:02:37 UTC (rev 281790)
@@ -1,5 +1,35 @@
 2021-08-30  Ross Kirsling  <ross.kirsl...@sony.com>
 
+        [JSC] Host functions and custom getters should be lowerCamelCase
+        https://bugs.webkit.org/show_bug.cgi?id=229695
+
+        Reviewed by Yusuke Suzuki.
+
+        For some reason, the host functions and custom getters for Intl (and JSONObject) were written in UpperCamelCase.
+
+        * runtime/IntlCollatorConstructor.cpp:
+        * runtime/IntlCollatorPrototype.cpp:
+        * runtime/IntlDateTimeFormatConstructor.cpp:
+        * runtime/IntlDateTimeFormatPrototype.cpp:
+        * runtime/IntlDisplayNamesConstructor.cpp:
+        * runtime/IntlDisplayNamesPrototype.cpp:
+        * runtime/IntlListFormatConstructor.cpp:
+        * runtime/IntlListFormatPrototype.cpp:
+        * runtime/IntlLocalePrototype.cpp:
+        * runtime/IntlNumberFormatConstructor.cpp:
+        * runtime/IntlNumberFormatPrototype.cpp:
+        * runtime/IntlPluralRulesConstructor.cpp:
+        * runtime/IntlPluralRulesPrototype.cpp:
+        * runtime/IntlRelativeTimeFormatConstructor.cpp:
+        * runtime/IntlRelativeTimeFormatPrototype.cpp:
+        * runtime/IntlSegmentIteratorPrototype.cpp:
+        * runtime/IntlSegmenterConstructor.cpp:
+        * runtime/IntlSegmenterPrototype.cpp:
+        * runtime/IntlSegmentsPrototype.cpp:
+        * runtime/JSONObject.cpp:
+
+2021-08-30  Ross Kirsling  <ross.kirsl...@sony.com>
+
         [JSC][Intl] Errors for .call({}) are too verbose
         https://bugs.webkit.org/show_bug.cgi?id=229694
 

Modified: trunk/Source/_javascript_Core/runtime/IntlCollatorConstructor.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlCollatorConstructor.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlCollatorConstructor.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -37,7 +37,7 @@
 
 STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(IntlCollatorConstructor);
 
-static JSC_DECLARE_HOST_FUNCTION(IntlCollatorConstructorFuncSupportedLocalesOf);
+static JSC_DECLARE_HOST_FUNCTION(intlCollatorConstructorFuncSupportedLocalesOf);
 
 }
 
@@ -52,7 +52,7 @@
 
 /* Source for IntlCollatorConstructor.lut.h
 @begin collatorConstructorTable
-  supportedLocalesOf             IntlCollatorConstructorFuncSupportedLocalesOf             DontEnum|Function 1
+  supportedLocalesOf             intlCollatorConstructorFuncSupportedLocalesOf             DontEnum|Function 1
 @end
 */
 
@@ -121,7 +121,7 @@
     return JSValue::encode(collator);
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlCollatorConstructorFuncSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlCollatorConstructorFuncSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlCollatorPrototype.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlCollatorPrototype.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlCollatorPrototype.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -33,9 +33,9 @@
 
 namespace JSC {
 
-static JSC_DECLARE_CUSTOM_GETTER(IntlCollatorPrototypeGetterCompare);
-static JSC_DECLARE_HOST_FUNCTION(IntlCollatorPrototypeFuncResolvedOptions);
-static JSC_DECLARE_HOST_FUNCTION(IntlCollatorFuncCompare);
+static JSC_DECLARE_CUSTOM_GETTER(intlCollatorPrototypeGetterCompare);
+static JSC_DECLARE_HOST_FUNCTION(intlCollatorPrototypeFuncResolvedOptions);
+static JSC_DECLARE_HOST_FUNCTION(intlCollatorFuncCompare);
 
 }
 
@@ -47,8 +47,8 @@
 
 /* Source for IntlCollatorPrototype.lut.h
 @begin collatorPrototypeTable
-  compare          IntlCollatorPrototypeGetterCompare        DontEnum|ReadOnly|CustomAccessor
-  resolvedOptions  IntlCollatorPrototypeFuncResolvedOptions  DontEnum|Function 0
+  compare          intlCollatorPrototypeGetterCompare        DontEnum|ReadOnly|CustomAccessor
+  resolvedOptions  intlCollatorPrototypeFuncResolvedOptions  DontEnum|Function 0
 @end
 */
 
@@ -76,7 +76,7 @@
     JSC_TO_STRING_TAG_WITHOUT_TRANSITION();
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlCollatorFuncCompare, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlCollatorFuncCompare, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -105,7 +105,7 @@
     RELEASE_AND_RETURN(scope, JSValue::encode(collator->compareStrings(globalObject, xViewWithString.view, yViewWithString.view)));
 }
 
-JSC_DEFINE_CUSTOM_GETTER(IntlCollatorPrototypeGetterCompare, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlCollatorPrototypeGetterCompare, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -122,7 +122,7 @@
         JSGlobalObject* globalObject = collator->globalObject(vm);
         // a. Let F be a new built-in function object as defined in 11.3.4.
         // b. The value of F’s length property is 2.
-        JSFunction* targetObject = JSFunction::create(vm, globalObject, 2, "compare"_s, IntlCollatorFuncCompare, NoIntrinsic);
+        JSFunction* targetObject = JSFunction::create(vm, globalObject, 2, "compare"_s, intlCollatorFuncCompare, NoIntrinsic);
 
         // c. Let bc be BoundFunctionCreate(F, «this value»).
         boundCompare = JSBoundFunction::create(vm, globalObject, targetObject, collator, nullptr, 2, nullptr);
@@ -134,7 +134,7 @@
     return JSValue::encode(boundCompare);
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlCollatorPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlCollatorPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlDateTimeFormatConstructor.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlDateTimeFormatConstructor.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlDateTimeFormatConstructor.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -36,7 +36,7 @@
 
 STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(IntlDateTimeFormatConstructor);
 
-static JSC_DECLARE_HOST_FUNCTION(IntlDateTimeFormatConstructorFuncSupportedLocalesOf);
+static JSC_DECLARE_HOST_FUNCTION(intlDateTimeFormatConstructorFuncSupportedLocalesOf);
 
 }
 
@@ -48,7 +48,7 @@
 
 /* Source for IntlDateTimeFormatConstructor.lut.h
 @begin dateTimeFormatConstructorTable
-  supportedLocalesOf             IntlDateTimeFormatConstructorFuncSupportedLocalesOf             DontEnum|Function 1
+  supportedLocalesOf             intlDateTimeFormatConstructorFuncSupportedLocalesOf             DontEnum|Function 1
 @end
 */
 
@@ -119,7 +119,7 @@
     }));
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlDateTimeFormatConstructorFuncSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlDateTimeFormatConstructorFuncSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlDateTimeFormatPrototype.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlDateTimeFormatPrototype.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlDateTimeFormatPrototype.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -36,12 +36,12 @@
 
 namespace JSC {
 
-static JSC_DECLARE_CUSTOM_GETTER(IntlDateTimeFormatPrototypeGetterFormat);
-static JSC_DECLARE_HOST_FUNCTION(IntlDateTimeFormatPrototypeFuncFormatRange);
-static JSC_DECLARE_HOST_FUNCTION(IntlDateTimeFormatPrototypeFuncFormatRangeToParts);
-static JSC_DECLARE_HOST_FUNCTION(IntlDateTimeFormatPrototypeFuncFormatToParts);
-static JSC_DECLARE_HOST_FUNCTION(IntlDateTimeFormatPrototypeFuncResolvedOptions);
-static JSC_DECLARE_HOST_FUNCTION(IntlDateTimeFormatFuncFormatDateTime);
+static JSC_DECLARE_CUSTOM_GETTER(intlDateTimeFormatPrototypeGetterFormat);
+static JSC_DECLARE_HOST_FUNCTION(intlDateTimeFormatPrototypeFuncFormatRange);
+static JSC_DECLARE_HOST_FUNCTION(intlDateTimeFormatPrototypeFuncFormatRangeToParts);
+static JSC_DECLARE_HOST_FUNCTION(intlDateTimeFormatPrototypeFuncFormatToParts);
+static JSC_DECLARE_HOST_FUNCTION(intlDateTimeFormatPrototypeFuncResolvedOptions);
+static JSC_DECLARE_HOST_FUNCTION(intlDateTimeFormatFuncFormatDateTime);
 
 }
 
@@ -53,10 +53,10 @@
 
 /* Source for IntlDateTimeFormatPrototype.lut.h
 @begin dateTimeFormatPrototypeTable
-  format                IntlDateTimeFormatPrototypeGetterFormat              DontEnum|ReadOnly|CustomAccessor
-  formatRange           IntlDateTimeFormatPrototypeFuncFormatRange           DontEnum|Function 2
-  formatToParts         IntlDateTimeFormatPrototypeFuncFormatToParts         DontEnum|Function 1
-  resolvedOptions       IntlDateTimeFormatPrototypeFuncResolvedOptions       DontEnum|Function 0
+  format                intlDateTimeFormatPrototypeGetterFormat              DontEnum|ReadOnly|CustomAccessor
+  formatRange           intlDateTimeFormatPrototypeFuncFormatRange           DontEnum|Function 2
+  formatToParts         intlDateTimeFormatPrototypeFuncFormatToParts         DontEnum|Function 1
+  resolvedOptions       intlDateTimeFormatPrototypeFuncResolvedOptions       DontEnum|Function 0
 @end
 */
 
@@ -82,15 +82,15 @@
     Base::finishCreation(vm);
     ASSERT(inherits(vm, info()));
 #if HAVE(ICU_U_DATE_INTERVAL_FORMAT_FORMAT_RANGE_TO_PARTS)
-    JSC_NATIVE_FUNCTION_WITHOUT_TRANSITION("formatRangeToParts", IntlDateTimeFormatPrototypeFuncFormatRangeToParts, static_cast<unsigned>(PropertyAttribute::DontEnum), 2);
+    JSC_NATIVE_FUNCTION_WITHOUT_TRANSITION("formatRangeToParts", intlDateTimeFormatPrototypeFuncFormatRangeToParts, static_cast<unsigned>(PropertyAttribute::DontEnum), 2);
 #else
     UNUSED_PARAM(globalObject);
-    UNUSED_PARAM(&IntlDateTimeFormatPrototypeFuncFormatRangeToParts);
+    UNUSED_PARAM(&intlDateTimeFormatPrototypeFuncFormatRangeToParts);
 #endif
     JSC_TO_STRING_TAG_WITHOUT_TRANSITION();
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlDateTimeFormatFuncFormatDateTime, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlDateTimeFormatFuncFormatDateTime, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -112,7 +112,7 @@
     RELEASE_AND_RETURN(scope, JSValue::encode(format->format(globalObject, value)));
 }
 
-JSC_DEFINE_CUSTOM_GETTER(IntlDateTimeFormatPrototypeGetterFormat, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlDateTimeFormatPrototypeGetterFormat, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -131,7 +131,7 @@
         JSGlobalObject* globalObject = dtf->globalObject(vm);
         // a. Let F be a new built-in function object as defined in 12.3.4.
         // b. The value of F’s length property is 1. (Note: F’s length property was 0 in ECMA-402 1.0)
-        JSFunction* targetObject = JSFunction::create(vm, globalObject, 1, "format"_s, IntlDateTimeFormatFuncFormatDateTime, NoIntrinsic);
+        JSFunction* targetObject = JSFunction::create(vm, globalObject, 1, "format"_s, intlDateTimeFormatFuncFormatDateTime, NoIntrinsic);
         // c. Let bf be BoundFunctionCreate(F, «this value»).
         boundFormat = JSBoundFunction::create(vm, globalObject, targetObject, dtf, nullptr, 1, nullptr);
         RETURN_IF_EXCEPTION(scope, encodedJSValue());
@@ -142,7 +142,7 @@
     return JSValue::encode(boundFormat);
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlDateTimeFormatPrototypeFuncFormatToParts, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlDateTimeFormatPrototypeFuncFormatToParts, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -169,7 +169,7 @@
 }
 
 // http://tc39.es/proposal-intl-DateTimeFormat-formatRange/#sec-intl.datetimeformat.prototype.formatRange
-JSC_DEFINE_HOST_FUNCTION(IntlDateTimeFormatPrototypeFuncFormatRange, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlDateTimeFormatPrototypeFuncFormatRange, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -196,7 +196,7 @@
 }
 
 // http://tc39.es/proposal-intl-DateTimeFormat-formatRange/#sec-intl.datetimeformat.prototype.formatRangeToParts
-JSC_DEFINE_HOST_FUNCTION(IntlDateTimeFormatPrototypeFuncFormatRangeToParts, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlDateTimeFormatPrototypeFuncFormatRangeToParts, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -222,7 +222,7 @@
     RELEASE_AND_RETURN(scope, JSValue::encode(dateTimeFormat->formatRangeToParts(globalObject, startDate, endDate)));
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlDateTimeFormatPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlDateTimeFormatPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlDisplayNamesConstructor.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlDisplayNamesConstructor.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlDisplayNamesConstructor.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -34,7 +34,7 @@
 
 STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(IntlDisplayNamesConstructor);
 
-static JSC_DECLARE_HOST_FUNCTION(IntlDisplayNamesConstructorSupportedLocalesOf);
+static JSC_DECLARE_HOST_FUNCTION(intlDisplayNamesConstructorSupportedLocalesOf);
 
 }
 
@@ -46,7 +46,7 @@
 
 /* Source for IntlDisplayNamesConstructor.lut.h
 @begin displayNamesConstructorTable
-  supportedLocalesOf             IntlDisplayNamesConstructorSupportedLocalesOf             DontEnum|Function 1
+  supportedLocalesOf             intlDisplayNamesConstructorSupportedLocalesOf             DontEnum|Function 1
 @end
 */
 
@@ -104,7 +104,7 @@
     return JSValue::encode(throwConstructorCannotBeCalledAsFunctionTypeError(globalObject, scope, "DisplayNames"));
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlDisplayNamesConstructorSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlDisplayNamesConstructorSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlDisplayNamesPrototype.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlDisplayNamesPrototype.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlDisplayNamesPrototype.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -31,8 +31,8 @@
 
 namespace JSC {
 
-static JSC_DECLARE_HOST_FUNCTION(IntlDisplayNamesPrototypeFuncOf);
-static JSC_DECLARE_HOST_FUNCTION(IntlDisplayNamesPrototypeFuncResolvedOptions);
+static JSC_DECLARE_HOST_FUNCTION(intlDisplayNamesPrototypeFuncOf);
+static JSC_DECLARE_HOST_FUNCTION(intlDisplayNamesPrototypeFuncResolvedOptions);
 
 }
 
@@ -44,8 +44,8 @@
 
 /* Source for IntlDisplayNamesPrototype.lut.h
 @begin displayNamesPrototypeTable
-  of               IntlDisplayNamesPrototypeFuncOf                 DontEnum|Function 1
-  resolvedOptions  IntlDisplayNamesPrototypeFuncResolvedOptions    DontEnum|Function 0
+  of               intlDisplayNamesPrototypeFuncOf                 DontEnum|Function 1
+  resolvedOptions  intlDisplayNamesPrototypeFuncResolvedOptions    DontEnum|Function 0
 @end
 */
 
@@ -74,7 +74,7 @@
 }
 
 // https://tc39.es/proposal-intl-displaynames/#sec-Intl.DisplayNames.prototype.of
-JSC_DEFINE_HOST_FUNCTION(IntlDisplayNamesPrototypeFuncOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlDisplayNamesPrototypeFuncOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -87,7 +87,7 @@
 }
 
 // https://tc39.es/proposal-intl-displaynames/#sec-Intl.DisplayNames.prototype.resolvedOptions
-JSC_DEFINE_HOST_FUNCTION(IntlDisplayNamesPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlDisplayNamesPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlListFormatConstructor.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlListFormatConstructor.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlListFormatConstructor.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -34,7 +34,7 @@
 
 STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(IntlListFormatConstructor);
 
-static JSC_DECLARE_HOST_FUNCTION(IntlListFormatConstructorSupportedLocalesOf);
+static JSC_DECLARE_HOST_FUNCTION(intlListFormatConstructorSupportedLocalesOf);
 
 }
 
@@ -46,7 +46,7 @@
 
 /* Source for IntlListFormatConstructor.lut.h
 @begin listFormatConstructorTable
-  supportedLocalesOf             IntlListFormatConstructorSupportedLocalesOf             DontEnum|Function 1
+  supportedLocalesOf             intlListFormatConstructorSupportedLocalesOf             DontEnum|Function 1
 @end
 */
 
@@ -104,7 +104,7 @@
     return JSValue::encode(throwConstructorCannotBeCalledAsFunctionTypeError(globalObject, scope, "ListFormat"));
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlListFormatConstructorSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlListFormatConstructorSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlListFormatPrototype.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlListFormatPrototype.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlListFormatPrototype.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -31,9 +31,9 @@
 
 namespace JSC {
 
-static JSC_DECLARE_HOST_FUNCTION(IntlListFormatPrototypeFuncFormat);
-static JSC_DECLARE_HOST_FUNCTION(IntlListFormatPrototypeFuncFormatToParts);
-static JSC_DECLARE_HOST_FUNCTION(IntlListFormatPrototypeFuncResolvedOptions);
+static JSC_DECLARE_HOST_FUNCTION(intlListFormatPrototypeFuncFormat);
+static JSC_DECLARE_HOST_FUNCTION(intlListFormatPrototypeFuncFormatToParts);
+static JSC_DECLARE_HOST_FUNCTION(intlListFormatPrototypeFuncResolvedOptions);
 
 }
 
@@ -45,9 +45,9 @@
 
 /* Source for IntlListFormatPrototype.lut.h
 @begin listFormatPrototypeTable
-  format           IntlListFormatPrototypeFuncFormat             DontEnum|Function 1
-  formatToParts    IntlListFormatPrototypeFuncFormatToParts      DontEnum|Function 1
-  resolvedOptions  IntlListFormatPrototypeFuncResolvedOptions    DontEnum|Function 0
+  format           intlListFormatPrototypeFuncFormat             DontEnum|Function 1
+  formatToParts    intlListFormatPrototypeFuncFormatToParts      DontEnum|Function 1
+  resolvedOptions  intlListFormatPrototypeFuncResolvedOptions    DontEnum|Function 0
 @end
 */
 
@@ -76,7 +76,7 @@
 }
 
 // https://tc39.es/proposal-intl-list-format/#sec-Intl.ListFormat.prototype.format
-JSC_DEFINE_HOST_FUNCTION(IntlListFormatPrototypeFuncFormat, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlListFormatPrototypeFuncFormat, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -89,7 +89,7 @@
 }
 
 // https://tc39.es/proposal-intl-list-format/#sec-Intl.ListFormat.prototype.formatToParts
-JSC_DEFINE_HOST_FUNCTION(IntlListFormatPrototypeFuncFormatToParts, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlListFormatPrototypeFuncFormatToParts, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -102,7 +102,7 @@
 }
 
 // https://tc39.es/proposal-intl-list-format/#sec-Intl.ListFormat.prototype.resolvedOptions
-JSC_DEFINE_HOST_FUNCTION(IntlListFormatPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlListFormatPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlLocalePrototype.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlLocalePrototype.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlLocalePrototype.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -31,26 +31,26 @@
 
 namespace JSC {
 
-static JSC_DECLARE_HOST_FUNCTION(IntlLocalePrototypeFuncMaximize);
-static JSC_DECLARE_HOST_FUNCTION(IntlLocalePrototypeFuncMinimize);
-static JSC_DECLARE_HOST_FUNCTION(IntlLocalePrototypeFuncToString);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterBaseName);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterCalendar);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterCalendars);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterCaseFirst);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterCollation);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterCollations);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterHourCycle);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterHourCycles);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterNumeric);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterNumberingSystem);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterNumberingSystems);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterLanguage);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterScript);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterRegion);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterTimeZones);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterTextInfo);
-static JSC_DECLARE_CUSTOM_GETTER(IntlLocalePrototypeGetterWeekInfo);
+static JSC_DECLARE_HOST_FUNCTION(intlLocalePrototypeFuncMaximize);
+static JSC_DECLARE_HOST_FUNCTION(intlLocalePrototypeFuncMinimize);
+static JSC_DECLARE_HOST_FUNCTION(intlLocalePrototypeFuncToString);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterBaseName);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterCalendar);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterCalendars);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterCaseFirst);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterCollation);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterCollations);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterHourCycle);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterHourCycles);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterNumeric);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterNumberingSystem);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterNumberingSystems);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterLanguage);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterScript);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterRegion);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterTimeZones);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterTextInfo);
+static JSC_DECLARE_CUSTOM_GETTER(intlLocalePrototypeGetterWeekInfo);
 
 }
 
@@ -62,26 +62,26 @@
 
 /* Source for IntlLocalePrototype.lut.h
 @begin localePrototypeTable
-  maximize         IntlLocalePrototypeFuncMaximize           DontEnum|Function 0
-  minimize         IntlLocalePrototypeFuncMinimize           DontEnum|Function 0
-  toString         IntlLocalePrototypeFuncToString           DontEnum|Function 0
-  baseName         IntlLocalePrototypeGetterBaseName         DontEnum|ReadOnly|CustomAccessor
-  calendar         IntlLocalePrototypeGetterCalendar         DontEnum|ReadOnly|CustomAccessor
-  calendars        IntlLocalePrototypeGetterCalendars        DontEnum|ReadOnly|CustomAccessor
-  caseFirst        IntlLocalePrototypeGetterCaseFirst        DontEnum|ReadOnly|CustomAccessor
-  collation        IntlLocalePrototypeGetterCollation        DontEnum|ReadOnly|CustomAccessor
-  collations       IntlLocalePrototypeGetterCollations       DontEnum|ReadOnly|CustomAccessor
-  hourCycle        IntlLocalePrototypeGetterHourCycle        DontEnum|ReadOnly|CustomAccessor
-  hourCycles       IntlLocalePrototypeGetterHourCycles       DontEnum|ReadOnly|CustomAccessor
-  numeric          IntlLocalePrototypeGetterNumeric          DontEnum|ReadOnly|CustomAccessor
-  numberingSystem  IntlLocalePrototypeGetterNumberingSystem  DontEnum|ReadOnly|CustomAccessor
-  numberingSystems IntlLocalePrototypeGetterNumberingSystems DontEnum|ReadOnly|CustomAccessor
-  language         IntlLocalePrototypeGetterLanguage         DontEnum|ReadOnly|CustomAccessor
-  script           IntlLocalePrototypeGetterScript           DontEnum|ReadOnly|CustomAccessor
-  region           IntlLocalePrototypeGetterRegion           DontEnum|ReadOnly|CustomAccessor
-  timeZones        IntlLocalePrototypeGetterTimeZones        DontEnum|ReadOnly|CustomAccessor
-  textInfo         IntlLocalePrototypeGetterTextInfo         DontEnum|ReadOnly|CustomAccessor
-  weekInfo         IntlLocalePrototypeGetterWeekInfo         DontEnum|ReadOnly|CustomAccessor
+  maximize         intlLocalePrototypeFuncMaximize           DontEnum|Function 0
+  minimize         intlLocalePrototypeFuncMinimize           DontEnum|Function 0
+  toString         intlLocalePrototypeFuncToString           DontEnum|Function 0
+  baseName         intlLocalePrototypeGetterBaseName         DontEnum|ReadOnly|CustomAccessor
+  calendar         intlLocalePrototypeGetterCalendar         DontEnum|ReadOnly|CustomAccessor
+  calendars        intlLocalePrototypeGetterCalendars        DontEnum|ReadOnly|CustomAccessor
+  caseFirst        intlLocalePrototypeGetterCaseFirst        DontEnum|ReadOnly|CustomAccessor
+  collation        intlLocalePrototypeGetterCollation        DontEnum|ReadOnly|CustomAccessor
+  collations       intlLocalePrototypeGetterCollations       DontEnum|ReadOnly|CustomAccessor
+  hourCycle        intlLocalePrototypeGetterHourCycle        DontEnum|ReadOnly|CustomAccessor
+  hourCycles       intlLocalePrototypeGetterHourCycles       DontEnum|ReadOnly|CustomAccessor
+  numeric          intlLocalePrototypeGetterNumeric          DontEnum|ReadOnly|CustomAccessor
+  numberingSystem  intlLocalePrototypeGetterNumberingSystem  DontEnum|ReadOnly|CustomAccessor
+  numberingSystems intlLocalePrototypeGetterNumberingSystems DontEnum|ReadOnly|CustomAccessor
+  language         intlLocalePrototypeGetterLanguage         DontEnum|ReadOnly|CustomAccessor
+  script           intlLocalePrototypeGetterScript           DontEnum|ReadOnly|CustomAccessor
+  region           intlLocalePrototypeGetterRegion           DontEnum|ReadOnly|CustomAccessor
+  timeZones        intlLocalePrototypeGetterTimeZones        DontEnum|ReadOnly|CustomAccessor
+  textInfo         intlLocalePrototypeGetterTextInfo         DontEnum|ReadOnly|CustomAccessor
+  weekInfo         intlLocalePrototypeGetterWeekInfo         DontEnum|ReadOnly|CustomAccessor
 @end
 */
 
@@ -110,7 +110,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.Locale.prototype.maximize
-JSC_DEFINE_HOST_FUNCTION(IntlLocalePrototypeFuncMaximize, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlLocalePrototypeFuncMaximize, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -126,7 +126,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.Locale.prototype.minimize
-JSC_DEFINE_HOST_FUNCTION(IntlLocalePrototypeFuncMinimize, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlLocalePrototypeFuncMinimize, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -142,7 +142,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.Locale.prototype.toString
-JSC_DEFINE_HOST_FUNCTION(IntlLocalePrototypeFuncToString, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlLocalePrototypeFuncToString, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -156,7 +156,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.Locale.prototype.baseName
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterBaseName, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterBaseName, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -170,7 +170,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.Locale.prototype.calendar
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterCalendar, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterCalendar, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -184,7 +184,7 @@
 }
 
 // https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.calendars
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterCalendars, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterCalendars, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -197,7 +197,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.Locale.prototype.caseFirst
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterCaseFirst, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterCaseFirst, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -211,7 +211,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.Locale.prototype.collation
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterCollation, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterCollation, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -225,7 +225,7 @@
 }
 
 // https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.collations
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterCollations, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterCollations, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -238,7 +238,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.Locale.prototype.hourCycle
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterHourCycle, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterHourCycle, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -252,7 +252,7 @@
 }
 
 // https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.hourcycles
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterHourCycles, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterHourCycles, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -265,7 +265,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.Locale.prototype.numeric
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterNumeric, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterNumeric, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -278,7 +278,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.Locale.prototype.numberingSystem
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterNumberingSystem, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterNumberingSystem, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -292,7 +292,7 @@
 }
 
 // https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.numberingSystems
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterNumberingSystems, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterNumberingSystems, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -305,7 +305,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.Locale.prototype.language
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterLanguage, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterLanguage, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -319,7 +319,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.Locale.prototype.script
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterScript, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterScript, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -333,7 +333,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.Locale.prototype.region
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterRegion, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterRegion, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -347,7 +347,7 @@
 }
 
 // https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.timezones
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterTimeZones, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterTimeZones, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -360,7 +360,7 @@
 }
 
 // https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.textInfo
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterTextInfo, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterTextInfo, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -373,7 +373,7 @@
 }
 
 // https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.weekInfo
-JSC_DEFINE_CUSTOM_GETTER(IntlLocalePrototypeGetterWeekInfo, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlLocalePrototypeGetterWeekInfo, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlNumberFormatConstructor.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlNumberFormatConstructor.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlNumberFormatConstructor.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -36,7 +36,7 @@
 
 STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(IntlNumberFormatConstructor);
 
-static JSC_DECLARE_HOST_FUNCTION(IntlNumberFormatConstructorFuncSupportedLocalesOf);
+static JSC_DECLARE_HOST_FUNCTION(intlNumberFormatConstructorFuncSupportedLocalesOf);
 
 }
 
@@ -48,7 +48,7 @@
 
 /* Source for IntlNumberFormatConstructor.lut.h
 @begin numberFormatConstructorTable
-  supportedLocalesOf             IntlNumberFormatConstructorFuncSupportedLocalesOf             DontEnum|Function 1
+  supportedLocalesOf             intlNumberFormatConstructorFuncSupportedLocalesOf             DontEnum|Function 1
 @end
 */
 
@@ -119,7 +119,7 @@
     }));
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlNumberFormatConstructorFuncSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlNumberFormatConstructorFuncSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlNumberFormatPrototype.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlNumberFormatPrototype.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlNumberFormatPrototype.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -34,10 +34,10 @@
 
 namespace JSC {
 
-static JSC_DECLARE_CUSTOM_GETTER(IntlNumberFormatPrototypeGetterFormat);
-static JSC_DECLARE_HOST_FUNCTION(IntlNumberFormatPrototypeFuncFormatToParts);
-static JSC_DECLARE_HOST_FUNCTION(IntlNumberFormatPrototypeFuncResolvedOptions);
-static JSC_DECLARE_HOST_FUNCTION(IntlNumberFormatFuncFormat);
+static JSC_DECLARE_CUSTOM_GETTER(intlNumberFormatPrototypeGetterFormat);
+static JSC_DECLARE_HOST_FUNCTION(intlNumberFormatPrototypeFuncFormatToParts);
+static JSC_DECLARE_HOST_FUNCTION(intlNumberFormatPrototypeFuncResolvedOptions);
+static JSC_DECLARE_HOST_FUNCTION(intlNumberFormatFuncFormat);
 
 }
 
@@ -49,9 +49,9 @@
 
 /* Source for IntlNumberFormatPrototype.lut.h
 @begin numberFormatPrototypeTable
-  format           IntlNumberFormatPrototypeGetterFormat         DontEnum|ReadOnly|CustomAccessor
-  formatToParts    IntlNumberFormatPrototypeFuncFormatToParts    DontEnum|Function 1
-  resolvedOptions  IntlNumberFormatPrototypeFuncResolvedOptions  DontEnum|Function 0
+  format           intlNumberFormatPrototypeGetterFormat         DontEnum|ReadOnly|CustomAccessor
+  formatToParts    intlNumberFormatPrototypeFuncFormatToParts    DontEnum|Function 1
+  resolvedOptions  intlNumberFormatPrototypeFuncResolvedOptions  DontEnum|Function 0
 @end
 */
 
@@ -80,7 +80,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-number-format-functions
-JSC_DEFINE_HOST_FUNCTION(IntlNumberFormatFuncFormat, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlNumberFormatFuncFormat, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -108,7 +108,7 @@
     return JSValue::encode(numberFormat->format(globalObject, value));
 }
 
-JSC_DEFINE_CUSTOM_GETTER(IntlNumberFormatPrototypeGetterFormat, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
+JSC_DEFINE_CUSTOM_GETTER(intlNumberFormatPrototypeGetterFormat, (JSGlobalObject* globalObject, EncodedJSValue thisValue, PropertyName))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -126,7 +126,7 @@
         JSGlobalObject* globalObject = nf->globalObject(vm);
         // a. Let F be a new built-in function object as defined in 11.3.4.
         // b. The value of F’s length property is 1.
-        auto* targetObject = JSFunction::create(vm, globalObject, 1, "format"_s, IntlNumberFormatFuncFormat, NoIntrinsic);
+        auto* targetObject = JSFunction::create(vm, globalObject, 1, "format"_s, intlNumberFormatFuncFormat, NoIntrinsic);
         // c. Let bf be BoundFunctionCreate(F, «this value»).
         boundFormat = JSBoundFunction::create(vm, globalObject, targetObject, nf, nullptr, 1, nullptr);
         RETURN_IF_EXCEPTION(scope, encodedJSValue());
@@ -137,7 +137,7 @@
     return JSValue::encode(boundFormat);
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlNumberFormatPrototypeFuncFormatToParts, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlNumberFormatPrototypeFuncFormatToParts, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -156,7 +156,7 @@
     RELEASE_AND_RETURN(scope, JSValue::encode(numberFormat->formatToParts(globalObject, value)));
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlNumberFormatPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlNumberFormatPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlPluralRulesConstructor.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlPluralRulesConstructor.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlPluralRulesConstructor.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -36,7 +36,7 @@
 
 STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(IntlPluralRulesConstructor);
 
-static JSC_DECLARE_HOST_FUNCTION(IntlPluralRulesConstructorFuncSupportedLocalesOf);
+static JSC_DECLARE_HOST_FUNCTION(intlPluralRulesConstructorFuncSupportedLocalesOf);
 
 }
 
@@ -48,7 +48,7 @@
 
 /* Source for IntlPluralRulesConstructor.lut.h
 @begin pluralRulesConstructorTable
-  supportedLocalesOf             IntlPluralRulesConstructorFuncSupportedLocalesOf             DontEnum|Function 1
+  supportedLocalesOf             intlPluralRulesConstructorFuncSupportedLocalesOf             DontEnum|Function 1
 @end
 */
 
@@ -108,7 +108,7 @@
     return JSValue::encode(throwConstructorCannotBeCalledAsFunctionTypeError(globalObject, scope, "PluralRules"));
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlPluralRulesConstructorFuncSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlPluralRulesConstructorFuncSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlPluralRulesPrototype.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlPluralRulesPrototype.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlPluralRulesPrototype.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -32,8 +32,8 @@
 
 namespace JSC {
 
-static JSC_DECLARE_HOST_FUNCTION(IntlPluralRulesPrototypeFuncSelect);
-static JSC_DECLARE_HOST_FUNCTION(IntlPluralRulesPrototypeFuncResolvedOptions);
+static JSC_DECLARE_HOST_FUNCTION(intlPluralRulesPrototypeFuncSelect);
+static JSC_DECLARE_HOST_FUNCTION(intlPluralRulesPrototypeFuncResolvedOptions);
 
 }
 
@@ -45,8 +45,8 @@
 
 /* Source for IntlPluralRulesPrototype.lut.h
 @begin pluralRulesPrototypeTable
-  select           IntlPluralRulesPrototypeFuncSelect           DontEnum|Function 1
-  resolvedOptions  IntlPluralRulesPrototypeFuncResolvedOptions  DontEnum|Function 0
+  select           intlPluralRulesPrototypeFuncSelect           DontEnum|Function 1
+  resolvedOptions  intlPluralRulesPrototypeFuncResolvedOptions  DontEnum|Function 0
 @end
 */
 
@@ -74,7 +74,7 @@
     JSC_TO_STRING_TAG_WITHOUT_TRANSITION();
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlPluralRulesPrototypeFuncSelect, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlPluralRulesPrototypeFuncSelect, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -92,7 +92,7 @@
     RELEASE_AND_RETURN(scope, JSValue::encode(pluralRules->select(globalObject, value)));
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlPluralRulesPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlPluralRulesPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlRelativeTimeFormatConstructor.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlRelativeTimeFormatConstructor.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlRelativeTimeFormatConstructor.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -35,7 +35,7 @@
 
 STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(IntlRelativeTimeFormatConstructor);
 
-static JSC_DECLARE_HOST_FUNCTION(IntlRelativeTimeFormatConstructorFuncSupportedLocalesOf);
+static JSC_DECLARE_HOST_FUNCTION(intlRelativeTimeFormatConstructorFuncSupportedLocalesOf);
 
 }
 
@@ -47,7 +47,7 @@
 
 /* Source for IntlRelativeTimeFormatConstructor.lut.h
 @begin relativeTimeFormatConstructorTable
-  supportedLocalesOf             IntlRelativeTimeFormatConstructorFuncSupportedLocalesOf             DontEnum|Function 1
+  supportedLocalesOf             intlRelativeTimeFormatConstructorFuncSupportedLocalesOf             DontEnum|Function 1
 @end
 */
 
@@ -106,7 +106,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.RelativeTimeFormat.supportedLocalesOf
-JSC_DEFINE_HOST_FUNCTION(IntlRelativeTimeFormatConstructorFuncSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlRelativeTimeFormatConstructorFuncSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlRelativeTimeFormatPrototype.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlRelativeTimeFormatPrototype.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlRelativeTimeFormatPrototype.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -31,9 +31,9 @@
 
 namespace JSC {
 
-static JSC_DECLARE_HOST_FUNCTION(IntlRelativeTimeFormatPrototypeFuncFormat);
-static JSC_DECLARE_HOST_FUNCTION(IntlRelativeTimeFormatPrototypeFuncFormatToParts);
-static JSC_DECLARE_HOST_FUNCTION(IntlRelativeTimeFormatPrototypeFuncResolvedOptions);
+static JSC_DECLARE_HOST_FUNCTION(intlRelativeTimeFormatPrototypeFuncFormat);
+static JSC_DECLARE_HOST_FUNCTION(intlRelativeTimeFormatPrototypeFuncFormatToParts);
+static JSC_DECLARE_HOST_FUNCTION(intlRelativeTimeFormatPrototypeFuncResolvedOptions);
 
 }
 
@@ -45,9 +45,9 @@
 
 /* Source for IntlRelativeTimeFormatPrototype.lut.h
 @begin relativeTimeFormatPrototypeTable
-  format           IntlRelativeTimeFormatPrototypeFuncFormat           DontEnum|Function 2
-  formatToParts    IntlRelativeTimeFormatPrototypeFuncFormatToParts    DontEnum|Function 2
-  resolvedOptions  IntlRelativeTimeFormatPrototypeFuncResolvedOptions  DontEnum|Function 0
+  format           intlRelativeTimeFormatPrototypeFuncFormat           DontEnum|Function 2
+  formatToParts    intlRelativeTimeFormatPrototypeFuncFormatToParts    DontEnum|Function 2
+  resolvedOptions  intlRelativeTimeFormatPrototypeFuncResolvedOptions  DontEnum|Function 0
 @end
 */
 
@@ -76,7 +76,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.RelativeTimeFormat.prototype.format
-JSC_DEFINE_HOST_FUNCTION(IntlRelativeTimeFormatPrototypeFuncFormat, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlRelativeTimeFormatPrototypeFuncFormat, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -95,7 +95,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-Intl.RelativeTimeFormat.prototype.formatToParts
-JSC_DEFINE_HOST_FUNCTION(IntlRelativeTimeFormatPrototypeFuncFormatToParts, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlRelativeTimeFormatPrototypeFuncFormatToParts, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -114,7 +114,7 @@
 }
 
 // https://tc39.es/ecma402/#sec-intl.relativetimeformat.prototype.resolvedoptions
-JSC_DEFINE_HOST_FUNCTION(IntlRelativeTimeFormatPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlRelativeTimeFormatPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlSegmentIteratorPrototype.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlSegmentIteratorPrototype.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlSegmentIteratorPrototype.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -31,7 +31,7 @@
 
 namespace JSC {
 
-static JSC_DECLARE_HOST_FUNCTION(IntlSegmentIteratorPrototypeFuncNext);
+static JSC_DECLARE_HOST_FUNCTION(intlSegmentIteratorPrototypeFuncNext);
 
 }
 
@@ -43,7 +43,7 @@
 
 /* Source for IntlSegmentIteratorPrototype.lut.h
 @begin segmentIteratorPrototypeTable
-  next             IntlSegmentIteratorPrototypeFuncNext               DontEnum|Function 0
+  next             intlSegmentIteratorPrototypeFuncNext               DontEnum|Function 0
 @end
 */
 
@@ -72,7 +72,7 @@
 }
 
 // https://tc39.es/proposal-intl-segmenter/#sec-%segmentiteratorprototype%.next
-JSC_DEFINE_HOST_FUNCTION(IntlSegmentIteratorPrototypeFuncNext, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlSegmentIteratorPrototypeFuncNext, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlSegmenterConstructor.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlSegmenterConstructor.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlSegmenterConstructor.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -34,7 +34,7 @@
 
 STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(IntlSegmenterConstructor);
 
-static JSC_DECLARE_HOST_FUNCTION(IntlSegmenterConstructorSupportedLocalesOf);
+static JSC_DECLARE_HOST_FUNCTION(intlSegmenterConstructorSupportedLocalesOf);
 
 }
 
@@ -46,7 +46,7 @@
 
 /* Source for IntlSegmenterConstructor.lut.h
 @begin segmenterConstructorTable
-  supportedLocalesOf             IntlSegmenterConstructorSupportedLocalesOf             DontEnum|Function 1
+  supportedLocalesOf             intlSegmenterConstructorSupportedLocalesOf             DontEnum|Function 1
 @end
 */
 
@@ -104,7 +104,7 @@
     return JSValue::encode(throwConstructorCannotBeCalledAsFunctionTypeError(globalObject, scope, "Segmenter"));
 }
 
-JSC_DEFINE_HOST_FUNCTION(IntlSegmenterConstructorSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlSegmenterConstructorSupportedLocalesOf, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlSegmenterPrototype.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlSegmenterPrototype.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlSegmenterPrototype.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -31,8 +31,8 @@
 
 namespace JSC {
 
-static JSC_DECLARE_HOST_FUNCTION(IntlSegmenterPrototypeFuncSegment);
-static JSC_DECLARE_HOST_FUNCTION(IntlSegmenterPrototypeFuncResolvedOptions);
+static JSC_DECLARE_HOST_FUNCTION(intlSegmenterPrototypeFuncSegment);
+static JSC_DECLARE_HOST_FUNCTION(intlSegmenterPrototypeFuncResolvedOptions);
 
 }
 
@@ -44,8 +44,8 @@
 
 /* Source for IntlSegmenterPrototype.lut.h
 @begin segmenterPrototypeTable
-  segment          IntlSegmenterPrototypeFuncSegment            DontEnum|Function 1
-  resolvedOptions  IntlSegmenterPrototypeFuncResolvedOptions    DontEnum|Function 0
+  segment          intlSegmenterPrototypeFuncSegment            DontEnum|Function 1
+  resolvedOptions  intlSegmenterPrototypeFuncResolvedOptions    DontEnum|Function 0
 @end
 */
 
@@ -74,7 +74,7 @@
 }
 
 // https://tc39.es/proposal-intl-segmenter/#sec-intl.segmenter.prototype.segment
-JSC_DEFINE_HOST_FUNCTION(IntlSegmenterPrototypeFuncSegment, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlSegmenterPrototypeFuncSegment, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -87,7 +87,7 @@
 }
 
 // https://tc39.es/proposal-intl-segmenter/#sec-Intl.Segmenter.prototype.resolvedOptions
-JSC_DEFINE_HOST_FUNCTION(IntlSegmenterPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlSegmenterPrototypeFuncResolvedOptions, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/IntlSegmentsPrototype.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/IntlSegmentsPrototype.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/IntlSegmentsPrototype.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -31,8 +31,8 @@
 
 namespace JSC {
 
-static JSC_DECLARE_HOST_FUNCTION(IntlSegmentsPrototypeFuncContaining);
-static JSC_DECLARE_HOST_FUNCTION(IntlSegmentsPrototypeFuncIterator);
+static JSC_DECLARE_HOST_FUNCTION(intlSegmentsPrototypeFuncContaining);
+static JSC_DECLARE_HOST_FUNCTION(intlSegmentsPrototypeFuncIterator);
 
 }
 
@@ -44,7 +44,7 @@
 
 /* Source for IntlSegmentsPrototype.lut.h
 @begin segmentsPrototypeTable
-  containing       IntlSegmentsPrototypeFuncContaining         DontEnum|Function 1
+  containing       intlSegmentsPrototypeFuncContaining         DontEnum|Function 1
 @end
 */
 
@@ -69,11 +69,11 @@
 {
     Base::finishCreation(vm);
     ASSERT(inherits(vm, info()));
-    JSC_NATIVE_FUNCTION_WITHOUT_TRANSITION(vm.propertyNames->iteratorSymbol, IntlSegmentsPrototypeFuncIterator, static_cast<unsigned>(PropertyAttribute::DontEnum), 0);
+    JSC_NATIVE_FUNCTION_WITHOUT_TRANSITION(vm.propertyNames->iteratorSymbol, intlSegmentsPrototypeFuncIterator, static_cast<unsigned>(PropertyAttribute::DontEnum), 0);
 }
 
 // https://tc39.es/proposal-intl-segmenter/#sec-%segmentsprototype%.containing
-JSC_DEFINE_HOST_FUNCTION(IntlSegmentsPrototypeFuncContaining, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlSegmentsPrototypeFuncContaining, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -86,7 +86,7 @@
 }
 
 // https://tc39.es/proposal-intl-segmenter/#sec-%segmentsprototype%-@@iterator
-JSC_DEFINE_HOST_FUNCTION(IntlSegmentsPrototypeFuncIterator, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(intlSegmentsPrototypeFuncIterator, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);

Modified: trunk/Source/_javascript_Core/runtime/JSONObject.cpp (281789 => 281790)


--- trunk/Source/_javascript_Core/runtime/JSONObject.cpp	2021-08-31 02:57:43 UTC (rev 281789)
+++ trunk/Source/_javascript_Core/runtime/JSONObject.cpp	2021-08-31 03:02:37 UTC (rev 281790)
@@ -42,8 +42,8 @@
 
 STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(JSONObject);
 
-static JSC_DECLARE_HOST_FUNCTION(JSONProtoFuncParse);
-static JSC_DECLARE_HOST_FUNCTION(JSONProtoFuncStringify);
+static JSC_DECLARE_HOST_FUNCTION(jsonProtoFuncParse);
+static JSC_DECLARE_HOST_FUNCTION(jsonProtoFuncStringify);
 
 }
 
@@ -588,8 +588,8 @@
 
 /* Source for JSONObject.lut.h
 @begin jsonTable
-  parse         JSONProtoFuncParse             DontEnum|Function 2
-  stringify     JSONProtoFuncStringify         DontEnum|Function 3
+  parse         jsonProtoFuncParse             DontEnum|Function 2
+  stringify     jsonProtoFuncStringify         DontEnum|Function 3
 @end
 */
 
@@ -785,7 +785,7 @@
 }
 
 // ECMA-262 v5 15.12.2
-JSC_DEFINE_HOST_FUNCTION(JSONProtoFuncParse, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(jsonProtoFuncParse, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
@@ -827,7 +827,7 @@
 }
 
 // ECMA-262 v5 15.12.3
-JSC_DEFINE_HOST_FUNCTION(JSONProtoFuncStringify, (JSGlobalObject* globalObject, CallFrame* callFrame))
+JSC_DEFINE_HOST_FUNCTION(jsonProtoFuncStringify, (JSGlobalObject* globalObject, CallFrame* callFrame))
 {
     VM& vm = globalObject->vm();
     auto scope = DECLARE_THROW_SCOPE(vm);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to