Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js

Issue 1907263002: DevTools: Fix all outstanding JavaScript style issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698