Changeset 165575 in webkit


Ignore:
Timestamp:
Mar 13, 2014 4:48:52 PM (10 years ago)
Author:
akling@apple.com
Message:

Revert "Short-circuit JSGlobalObjectInspectorController when not inspecting."
<https://webkit.org/b/129995>

This code path is not taken anymore on DYEB, and I can't explain why
it was showing up in my profiles. Backing it out per JoePeck's suggestion.

  • inspector/JSGlobalObjectInspectorController.cpp:

(Inspector::JSGlobalObjectInspectorController::reportAPIException):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r165571 r165575  
     12014-03-13  Andreas Kling  <akling@apple.com>
     2
     3        Revert "Short-circuit JSGlobalObjectInspectorController when not inspecting."
     4        <https://webkit.org/b/129995>
     5
     6        This code path is not taken anymore on DYEB, and I can't explain why
     7        it was showing up in my profiles. Backing it out per JoePeck's suggestion.
     8
     9        * inspector/JSGlobalObjectInspectorController.cpp:
     10        (Inspector::JSGlobalObjectInspectorController::reportAPIException):
     11
    1122014-03-13  Filip Pizlo  <fpizlo@apple.com>
    213
  • trunk/Source/JavaScriptCore/inspector/JSGlobalObjectInspectorController.cpp

    r165357 r165575  
    142142void JSGlobalObjectInspectorController::reportAPIException(ExecState* exec, JSValue exception)
    143143{
    144     if (!m_consoleAgent->enabled())
    145         return;
    146 
    147144    if (isTerminatedExecutionException(exception))
    148145        return;
Note: See TracChangeset for help on using the changeset viewer.