Title: [185715] trunk/Source/_javascript_Core
Revision
185715
Author
[email protected]
Date
2015-06-18 12:16:40 -0700 (Thu, 18 Jun 2015)

Log Message

Unreviewed. Rollout r185670 as it caused some tests to be flakey.

* debugger/Debugger.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (185714 => 185715)


--- trunk/Source/_javascript_Core/ChangeLog	2015-06-18 18:38:13 UTC (rev 185714)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-06-18 19:16:40 UTC (rev 185715)
@@ -1,3 +1,9 @@
+2015-06-18  Joseph Pecoraro  <[email protected]>
+
+        Unreviewed. Rollout r185670 as it caused some tests to be flakey.
+
+        * debugger/Debugger.cpp:
+
 2015-06-17  Alex Christensen  <[email protected]>
 
         [Content Extensions] Log blocked loads to the WebInspector console

Modified: trunk/Source/_javascript_Core/debugger/Debugger.cpp (185714 => 185715)


--- trunk/Source/_javascript_Core/debugger/Debugger.cpp	2015-06-18 18:38:13 UTC (rev 185714)
+++ trunk/Source/_javascript_Core/debugger/Debugger.cpp	2015-06-18 19:16:40 UTC (rev 185715)
@@ -76,7 +76,7 @@
         return;
 
     JSFunction* function = jsCast<JSFunction*>(cell);
-    if (function->isHostOrBuiltinFunction())
+    if (function->executable()->isHostFunction())
         return;
 
     FunctionExecutable* executable = function->jsExecutable();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to