Title: [281370] trunk/Source/_javascript_Core
Revision
281370
Author
[email protected]
Date
2021-08-21 05:28:04 -0700 (Sat, 21 Aug 2021)

Log Message

[JSC] Enable String,TypedArray#at
https://bugs.webkit.org/show_bug.cgi?id=229354

Reviewed by Saam Barati.

Enable String and TypedArray's `at` method.

* runtime/OptionsList.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (281369 => 281370)


--- trunk/Source/_javascript_Core/ChangeLog	2021-08-21 12:10:09 UTC (rev 281369)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-08-21 12:28:04 UTC (rev 281370)
@@ -1,5 +1,16 @@
 2021-08-21  Yusuke Suzuki  <[email protected]>
 
+        [JSC] Enable String,TypedArray#at
+        https://bugs.webkit.org/show_bug.cgi?id=229354
+
+        Reviewed by Saam Barati.
+
+        Enable String and TypedArray's `at` method.
+
+        * runtime/OptionsList.h:
+
+2021-08-21  Yusuke Suzuki  <[email protected]>
+
         [JSC] Enable Array#findLast method
         https://bugs.webkit.org/show_bug.cgi?id=229355
 

Modified: trunk/Source/_javascript_Core/runtime/OptionsList.h (281369 => 281370)


--- trunk/Source/_javascript_Core/runtime/OptionsList.h	2021-08-21 12:10:09 UTC (rev 281369)
+++ trunk/Source/_javascript_Core/runtime/OptionsList.h	2021-08-21 12:28:04 UTC (rev 281370)
@@ -544,7 +544,7 @@
     v(Bool, useWeakRefs, true, Normal, "Expose the WeakRef constructor.") \
     v(Bool, useIntlDateTimeFormatDayPeriod, true, Normal, "Expose the Intl.DateTimeFormat dayPeriod feature.") \
     v(Bool, useIntlDateTimeFormatRangeToParts, true, Normal, "Expose the Intl.DateTimeFormat#formatRangeToParts feature.") \
-    v(Bool, useAtMethod, false, Normal, "Expose the at() method on Array, %TypedArray%, and String.") \
+    v(Bool, useAtMethod, true, Normal, "Expose the at() method on Array, %TypedArray%, and String.") \
     v(Bool, useErrorCause, true, Normal, "Allow a cause to be provided when constructing an Error, _NativeError_, or AggregateError.") \
     v(Bool, useSharedArrayBuffer, false, Normal, nullptr) \
     v(Bool, useTopLevelAwait, true, Normal, "allow the await keyword at the top level of a module.") \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to