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; |
}, |
-} |
+}; |