⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 185670 in webkit


Ignore:
Timestamp:
Jun 17, 2015, 2:34:06 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2015-06-17
Reviewed by Timothy Hatcher.

  • debugger/Debugger.cpp:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r185659 r185670  
     12015-06-17  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Do not show JavaScriptCore builtins in inspector
     4        https://bugs.webkit.org/show_bug.cgi?id=146049
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * debugger/Debugger.cpp:
     9
    1102015-06-17  Andreas Kling  <akling@apple.com>
    211
  • trunk/Source/JavaScriptCore/debugger/Debugger.cpp

    r185608 r185670  
    7777
    7878    JSFunction* function = jsCast<JSFunction*>(cell);
    79     if (function->executable()->isHostFunction())
     79    if (function->isHostOrBuiltinFunction())
    8080        return;
    8181
Note: See TracChangeset for help on using the changeset viewer.