Title: [189443] trunk/Source/_javascript_Core
Revision
189443
Author
mark....@apple.com
Date
2015-09-05 23:30:44 -0700 (Sat, 05 Sep 2015)

Log Message

Fix JSDollarVMPrototype after r189160.
https://bugs.webkit.org/show_bug.cgi?id=148900

Reviewed by Michael Saboff.

JSDollarVMPrototype needs to be updated to match http://trac.webkit.org/changeset/189160 i.e.
remove the use of JSC::Function bit in its property attributes.

* tools/JSDollarVMPrototype.cpp:
(JSC::JSDollarVMPrototype::finishCreation):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (189442 => 189443)


--- trunk/Source/_javascript_Core/ChangeLog	2015-09-06 02:33:35 UTC (rev 189442)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-09-06 06:30:44 UTC (rev 189443)
@@ -1,3 +1,16 @@
+2015-09-05  Mark Lam  <mark....@apple.com>
+
+        Fix JSDollarVMPrototype after r189160.
+        https://bugs.webkit.org/show_bug.cgi?id=148900
+
+        Reviewed by Michael Saboff.
+
+        JSDollarVMPrototype needs to be updated to match http://trac.webkit.org/changeset/189160 i.e.
+        remove the use of JSC::Function bit in its property attributes.
+
+        * tools/JSDollarVMPrototype.cpp:
+        (JSC::JSDollarVMPrototype::finishCreation):
+
 2015-09-05  Yusuke Suzuki  <utatane....@gmail.com>
 
         Unreviewed, fix the module name resolution in Windows

Modified: trunk/Source/_javascript_Core/tools/JSDollarVMPrototype.cpp (189442 => 189443)


--- trunk/Source/_javascript_Core/tools/JSDollarVMPrototype.cpp	2015-09-06 02:33:35 UTC (rev 189442)
+++ trunk/Source/_javascript_Core/tools/JSDollarVMPrototype.cpp	2015-09-06 06:30:44 UTC (rev 189443)
@@ -402,7 +402,7 @@
     
     addFunction(vm, globalObject, "crash", functionCrash, 0);
     
-    putDirectNativeFunction(vm, globalObject, Identifier::fromString(&vm, "dfgTrue"), 0, functionDFGTrue, DFGTrueIntrinsic, DontEnum | JSC::Function);
+    putDirectNativeFunction(vm, globalObject, Identifier::fromString(&vm, "dfgTrue"), 0, functionDFGTrue, DFGTrueIntrinsic, DontEnum);
     
     addFunction(vm, globalObject, "llintTrue", functionLLintTrue, 0);
     addFunction(vm, globalObject, "jitTrue", functionJITTrue, 0);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to