Changeset 199899 in webkit
- Timestamp:
- Apr 22, 2016, 1:28:44 PM (9 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r199897 r199899 1 2016-04-22 Timothy Hatcher <timothy@apple.com> 2 3 Change an assert to a warn based on post review feedback. 4 5 https://bugs.webkit.org/show_bug.cgi?id=156919 6 rdar://problem/25857118 7 8 Rubber-stamped by Joseph Pecoraro. 9 10 * UserInterface/Controllers/DebuggerManager.js: 11 (WebInspector.DebuggerManager.prototype.debuggerDidPause): 12 1 13 2016-04-22 Timothy Hatcher <timothy@apple.com> 2 14 -
trunk/Source/WebInspectorUI/UserInterface/Controllers/DebuggerManager.js
r199897 r199899 547 547 548 548 if (!this._activeCallFrame) { 549 console. assert("We should always have one call frame. This could indicate we are hitting an exception or debugger statement in an internal injected script.");549 console.warn("We should always have one call frame. This could indicate we are hitting an exception or debugger statement in an internal injected script."); 550 550 this._didResumeInternal(); 551 551 return;
Note:
See TracChangeset
for help on using the changeset viewer.