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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/Text.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/common/Text.js
diff --git a/third_party/WebKit/Source/devtools/front_end/common/Text.js b/third_party/WebKit/Source/devtools/front_end/common/Text.js
index 670d0e8397e688406ae816dbae4dc223ce761f5a..844f7f62e827bf9baacabb6f4ff3d3aab4b80bfd 100644
--- a/third_party/WebKit/Source/devtools/front_end/common/Text.js
+++ b/third_party/WebKit/Source/devtools/front_end/common/Text.js
@@ -9,7 +9,7 @@
WebInspector.Text = function(value)
{
this._value = value;
-}
+};
WebInspector.Text.prototype = {
/**
@@ -113,7 +113,7 @@ WebInspector.Text.prototype = {
var sourceRange = this.toSourceRange(range);
return this._value.substr(sourceRange.offset, sourceRange.length);
}
-}
+};
/**
* @constructor
@@ -125,7 +125,7 @@ WebInspector.TextCursor = function(lineEndings)
this._offset = 0;
this._lineNumber = 0;
this._columnNumber = 0;
-}
+};
WebInspector.TextCursor.prototype = {
/**
@@ -172,4 +172,4 @@ WebInspector.TextCursor.prototype = {
{
return this._columnNumber;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698