Title: [185670] trunk/Source/_javascript_Core
Revision
185670
Author
[email protected]
Date
2015-06-17 14:34:06 -0700 (Wed, 17 Jun 2015)

Log Message

Web Inspector: Do not show _javascript_Core builtins in inspector
https://bugs.webkit.org/show_bug.cgi?id=146049

Patch by Joseph Pecoraro <[email protected]> on 2015-06-17
Reviewed by Timothy Hatcher.

* debugger/Debugger.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (185669 => 185670)


--- trunk/Source/_javascript_Core/ChangeLog	2015-06-17 21:33:32 UTC (rev 185669)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-06-17 21:34:06 UTC (rev 185670)
@@ -1,3 +1,12 @@
+2015-06-17  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Do not show _javascript_Core builtins in inspector
+        https://bugs.webkit.org/show_bug.cgi?id=146049
+
+        Reviewed by Timothy Hatcher.
+
+        * debugger/Debugger.cpp:
+
 2015-06-17  Andreas Kling  <[email protected]>
 
         [JSC] jsSubstring() should have a fast path for 0..baseLength "substrings."

Modified: trunk/Source/_javascript_Core/debugger/Debugger.cpp (185669 => 185670)


--- trunk/Source/_javascript_Core/debugger/Debugger.cpp	2015-06-17 21:33:32 UTC (rev 185669)
+++ trunk/Source/_javascript_Core/debugger/Debugger.cpp	2015-06-17 21:34:06 UTC (rev 185670)
@@ -76,7 +76,7 @@
         return;
 
     JSFunction* function = jsCast<JSFunction*>(cell);
-    if (function->executable()->isHostFunction())
+    if (function->isHostOrBuiltinFunction())
         return;
 
     FunctionExecutable* executable = function->jsExecutable();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to