Changeset 273125 in webkit
- Timestamp:
- Feb 18, 2021 8:39:10 PM (17 months ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
runtime/OptionsList.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r273107 r273125 1 2021-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 1 10 2021-02-18 Caio Lima <ticaiolima@gmail.com> 2 11 -
trunk/Source/JavaScriptCore/runtime/OptionsList.h
r272580 r273125 513 513 v(Bool, allowUnsupportedTiers, false, Normal, "If true, we will not disable DFG or FTL when an experimental feature is enabled.") \ 514 514 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.") \ 516 516 v(Bool, returnEarlyFromInfiniteLoopsForFuzzing, false, Normal, nullptr) \ 517 517 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.") \ … … 570 570 571 571 #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")574 572 575 573 constexpr size_t countNumberOfJSCOptions()
Note: See TracChangeset
for help on using the changeset viewer.