Title: [270066] trunk/Source/_javascript_Core
Revision
270066
Author
ysuz...@apple.com
Date
2020-11-19 18:48:50 -0800 (Thu, 19 Nov 2020)

Log Message

[JSC] Enable private instance and static fields
https://bugs.webkit.org/show_bug.cgi?id=219179

Reviewed by Mark Lam.

Enable private instance and static fields. We are not supporting private methods and static private methods yet.

* runtime/OptionsList.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (270065 => 270066)


--- trunk/Source/_javascript_Core/ChangeLog	2020-11-20 01:41:43 UTC (rev 270065)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-11-20 02:48:50 UTC (rev 270066)
@@ -1,3 +1,14 @@
+2020-11-19  Yusuke Suzuki  <ysuz...@apple.com>
+
+        [JSC] Enable private instance and static fields
+        https://bugs.webkit.org/show_bug.cgi?id=219179
+
+        Reviewed by Mark Lam.
+
+        Enable private instance and static fields. We are not supporting private methods and static private methods yet.
+
+        * runtime/OptionsList.h:
+
 2020-11-19  Saam Barati  <sbar...@apple.com>
 
         Use os_thread_self_restrict_rwx_is_supported instead of pthread_jit_write_protect_supported_np on Apple Internal SDK builds

Modified: trunk/Source/_javascript_Core/runtime/OptionsList.h (270065 => 270066)


--- trunk/Source/_javascript_Core/runtime/OptionsList.h	2020-11-20 01:41:43 UTC (rev 270065)
+++ trunk/Source/_javascript_Core/runtime/OptionsList.h	2020-11-20 02:48:50 UTC (rev 270066)
@@ -516,7 +516,7 @@
     v(Bool, useRandomizingExecutableIslandAllocation, false, Normal, "For the arm64 ExecutableAllocator, if true, select which region to use randomly. This is useful for testing that jump islands work.") \
     v(Bool, exposeProfilersOnGlobalObject, false, Normal, "If true, we will expose functions to enable/disable both the sampling profiler and the super sampler") \
     v(Bool, allowUnsupportedTiers, false, Normal, "If true, we will not disable DFG or FTL when an experimental feature is enabled.") \
-    v(Bool, usePrivateClassFields, false, Normal, "If true, the parser will understand private data fields inside classes.") \
+    v(Bool, usePrivateClassFields, true, Normal, "If true, the parser will understand private data fields inside classes.") \
     v(Bool, returnEarlyFromInfiniteLoopsForFuzzing, false, Normal, nullptr) \
     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.") \
     v(Bool, useLICMFuzzing, false, Normal, nullptr) \
@@ -525,7 +525,7 @@
     v(Bool, exposeCustomSettersOnGlobalObjectForTesting, false, Normal, nullptr) \
     v(Bool, useJITCage, canUseJITCage(), Normal, nullptr) \
     v(Bool, usePublicStaticClassFields, true, Normal, "If true, the parser will understand public static data fields inside classes.") \
-    v(Bool, usePrivateStaticClassFields, false, Normal, "If true, the parser will understand private static data fields inside classes.") \
+    v(Bool, usePrivateStaticClassFields, true, Normal, "If true, the parser will understand private static data fields inside classes.") \
 
 enum OptionEquivalence {
     SameOption,
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to