Changeset 288538 in webkit for trunk/Source/JavaScriptCore


Ignore:
Timestamp:
Jan 24, 2022, 9:38:35 PM (3 years ago)
Author:
[email protected]
Message:

[JSC] Enable Array#groupBy and Array#groupByToMap
https://bugs.webkit.org/show_bug.cgi?id=235549

Reviewed by Ross Kirsling.

JSTests:

  • stress/unscopables.js:

Source/JavaScriptCore:

  • runtime/OptionsList.h:

LayoutTests:

  • inspector/model/remote-object-get-properties-expected.txt:
  • js/Object-getOwnPropertyNames-expected.txt:
  • js/array-unscopables-properties-expected.txt:
  • js/script-tests/Object-getOwnPropertyNames.js:
  • js/script-tests/array-unscopables-properties.js:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r288537 r288538  
     12022-01-24  Yusuke Suzuki  <[email protected]>
     2
     3        [JSC] Enable Array#groupBy and Array#groupByToMap
     4        https://bugs.webkit.org/show_bug.cgi?id=235549
     5
     6        Reviewed by Ross Kirsling.
     7
     8        * runtime/OptionsList.h:
     9
    1102022-01-24  Cameron McCormack  <[email protected]>
    211
  • trunk/Source/JavaScriptCore/runtime/OptionsList.h

    r288473 r288538  
    539539    \
    540540    v(Bool, useArrayFindLastMethod, true, Normal, "Expose the findLast() and findLastIndex() methods on Array and %TypedArray%.") \
    541     v(Bool, useArrayGroupByMethod, false, Normal, "Expose the groupBy() and groupByToMap() methods on Array.") \
     541    v(Bool, useArrayGroupByMethod, true, Normal, "Expose the groupBy() and groupByToMap() methods on Array.") \
    542542    v(Bool, useAtMethod, true, Normal, "Expose the at() method on Array, %TypedArray%, and String.") \
    543543    v(Bool, useHasOwn, true, Normal, "Expose the Object.hasOwn method") \
Note: See TracChangeset for help on using the changeset viewer.