Changeset 184698 in webkit


Ignore:
Timestamp:
May 20, 2015, 10:12:10 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Fix WebInspector.StackTrace style
https://bugs.webkit.org/show_bug.cgi?id=145240

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2015-05-20
Reviewed by Timothy Hatcher.

  • UserInterface/Models/StackTrace.js:

Reorder and add our usual marker comments.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r184602 r184698  
     12015-05-20  Joseph Pecoraro  <pecoraro@apple.com>
     2
     3        Web Inspector: Fix WebInspector.StackTrace style
     4        https://bugs.webkit.org/show_bug.cgi?id=145240
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * UserInterface/Models/StackTrace.js:
     9        Reorder and add our usual marker comments.
     10
    1112015-05-19  Joseph Pecoraro  <pecoraro@apple.com>
    212
  • trunk/Source/WebInspectorUI/UserInterface/Models/StackTrace.js

    r184553 r184698  
    3535    }
    3636
     37    // Static
     38
     39    static fromPayload(payload)
     40    {
     41        var callFrames = payload.map(WebInspector.CallFrame.fromPayload);
     42        return new WebInspector.StackTrace(callFrames);
     43    }
     44
     45    // Public
     46
    3747    get callFrames()
    3848    {
     
    4959        return null;
    5060    }
    51 
    52     // Static
    53 
    54     static fromPayload(payload)
    55     {
    56         var callFrames = payload.map(WebInspector.CallFrame.fromPayload);
    57         return new WebInspector.StackTrace(callFrames);
    58     }
    5961};
Note: See TracChangeset for help on using the changeset viewer.