Index: third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
index 09967447427a68af5723c9cc030d61dbc35fe1f7..59ad119a1f0aace7bd5c6c276f3616ea475d4dc8 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
+++ b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
@@ -333,7 +333,9 @@ WebInspector.CallStackSidebarPane.prototype = { |
*/ |
_selectNextVisibleCallFrame: function(index, backward) |
{ |
+ /* eslint-disable yoda */ |
pfeldman
2016/04/22 14:22:07
We can rewrite it to make lint happy - I also can'
paulirish
2016/04/22 18:28:50
being addressed by kozyatinskiy. I'll remove the a
|
while (0 <= index && index < this.callFrames.length) { |
+ /* eslint-enable yoda */ |
var callFrame = this.callFrames[index]; |
if (!callFrame.isHidden() && !callFrame.isLabel() && !callFrame._asyncCallFrame) { |
this._callFrameSelected(callFrame); |