Changeset 185670 in webkit
- Timestamp:
- Jun 17, 2015, 2:34:06 PM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
debugger/Debugger.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r185659 r185670 1 2015-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 1 10 2015-06-17 Andreas Kling <akling@apple.com> 2 11 -
trunk/Source/JavaScriptCore/debugger/Debugger.cpp
r185608 r185670 77 77 78 78 JSFunction* function = jsCast<JSFunction*>(cell); 79 if (function-> executable()->isHostFunction())79 if (function->isHostOrBuiltinFunction()) 80 80 return; 81 81
Note:
See TracChangeset
for help on using the changeset viewer.