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

Unified Diff: third_party/WebKit/Source/devtools/front_end/text_editor/TextEditorAutocompleteController.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 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/text_editor/TextEditorAutocompleteController.js
diff --git a/third_party/WebKit/Source/devtools/front_end/text_editor/TextEditorAutocompleteController.js b/third_party/WebKit/Source/devtools/front_end/text_editor/TextEditorAutocompleteController.js
index 4ac28afa8dfd511c191c1eb5ee9951aa8bf87d99..93cffc07b797a932fbc515bcc1f61445df47d8b8 100644
--- a/third_party/WebKit/Source/devtools/front_end/text_editor/TextEditorAutocompleteController.js
+++ b/third_party/WebKit/Source/devtools/front_end/text_editor/TextEditorAutocompleteController.js
@@ -25,7 +25,7 @@ WebInspector.TextEditorAutocompleteController = function(textEditor, codeMirror,
this._codeMirror.on("changes", this._changes);
this._lastHintText = "";
this._hintElement = createElementWithClass("span", "auto-complete-text");
-}
+};
WebInspector.TextEditorAutocompleteController.HintBookmark = Symbol("hint");
@@ -437,4 +437,4 @@ WebInspector.TextEditorAutocompleteController.prototype = {
var metrics = this._textEditor.cursorPositionToCoordinates(line, column);
this._anchorBox = metrics ? new AnchorBox(metrics.x, metrics.y, 0, metrics.height) : null;
},
-}
+};

Powered by Google App Engine
This is Rietveld 408576698