Changeset 273125 in webkit


Ignore:
Timestamp:
Feb 18, 2021 8:39:10 PM (17 months ago)
Author:
ysuzuki@apple.com
Message:

[JSC] Enable private methods
https://bugs.webkit.org/show_bug.cgi?id=222137

Reviewed by Tadeu Zagallo.

  • runtime/OptionsList.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r273107 r273125  
     12021-02-18  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        [JSC] Enable private methods
     4        https://bugs.webkit.org/show_bug.cgi?id=222137
     5
     6        Reviewed by Tadeu Zagallo.
     7
     8        * runtime/OptionsList.h:
     9
    1102021-02-18  Caio Lima  <ticaiolima@gmail.com>
    211
  • trunk/Source/JavaScriptCore/runtime/OptionsList.h

    r272580 r273125  
    513513    v(Bool, allowUnsupportedTiers, false, Normal, "If true, we will not disable DFG or FTL when an experimental feature is enabled.") \
    514514    v(Bool, usePrivateClassFields, true, Normal, "If true, the parser will understand private data fields inside classes.") \
    515     v(Bool, usePrivateMethods, false, Normal, "If true, the parser will understand private methods inside classes.") \
     515    v(Bool, usePrivateMethods, true, Normal, "If true, the parser will understand private methods inside classes.") \
    516516    v(Bool, returnEarlyFromInfiniteLoopsForFuzzing, false, Normal, nullptr) \
    517517    v(Size, earlyReturnFromInfiniteLoopsLimit, 1300000000, Normal, "When returnEarlyFromInfiniteLoopsForFuzzing is true, this determines the number of executions a loop can run for before just returning. This is helpful for the fuzzer so it doesn't get stuck in infinite loops.") \
     
    570570
    571571#define FOR_EACH_JSC_EXPERIMENTAL_OPTION(v) \
    572     v(usePrivateClassFields, (SupportsFTL | SupportsDFG), "https://bugs.webkit.org/show_bug.cgi?id=212781", "https://bugs.webkit.org/show_bug.cgi?id=212784") \
    573     v(usePrivateMethods, (SupportsFTL | SupportsDFG), "https://bugs.webkit.org/show_bug.cgi?id=194434", "https://bugs.webkit.org/show_bug.cgi?id=194434")
    574572
    575573constexpr size_t countNumberOfJSCOptions()
Note: See TracChangeset for help on using the changeset viewer.