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

Unified Diff: third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.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/workspace/UISourceCode.js
diff --git a/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js b/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
index 5a89227ade816600b4a7ed0b083ec9d519ce3ac1..a717eb2723486a60656d1b4d4fa913b0d37a9019 100644
--- a/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
+++ b/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
@@ -67,7 +67,7 @@ WebInspector.UISourceCode = function(project, url, contentType)
/** @type {!Array<!WebInspector.UISourceCode.Message>} */
this._messages = [];
-}
+};
/** @enum {symbol} */
WebInspector.UISourceCode.Events = {
@@ -79,7 +79,7 @@ WebInspector.UISourceCode.Events = {
MessageRemoved: Symbol("MessageRemoved"),
LineDecorationAdded: Symbol("LineDecorationAdded"),
LineDecorationRemoved: Symbol("LineDecorationRemoved")
-}
+};
WebInspector.UISourceCode.prototype = {
/**
@@ -713,7 +713,7 @@ WebInspector.UISourceCode.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
/**
* @constructor
@@ -726,7 +726,7 @@ WebInspector.UILocation = function(uiSourceCode, lineNumber, columnNumber)
this.uiSourceCode = uiSourceCode;
this.lineNumber = lineNumber;
this.columnNumber = columnNumber;
-}
+};
WebInspector.UILocation.prototype = {
/**
@@ -755,7 +755,7 @@ WebInspector.UILocation.prototype = {
{
return this.uiSourceCode.url() + ":" + (this.lineNumber + 1);
}
-}
+};
/**
* @constructor
@@ -769,7 +769,7 @@ WebInspector.Revision = function(uiSourceCode, content, timestamp)
this._uiSourceCode = uiSourceCode;
this._content = content;
this._timestamp = timestamp;
-}
+};
WebInspector.Revision.prototype = {
/**
@@ -852,7 +852,7 @@ WebInspector.Revision.prototype = {
{
callback([]);
}
-}
+};
/**
* @constructor
@@ -867,7 +867,7 @@ WebInspector.UISourceCode.Message = function(uiSourceCode, level, text, range)
this._level = level;
this._text = text;
this._range = range;
-}
+};
/**
* @enum {string}
@@ -875,7 +875,7 @@ WebInspector.UISourceCode.Message = function(uiSourceCode, level, text, range)
WebInspector.UISourceCode.Message.Level = {
Error: "Error",
Warning: "Warning"
-}
+};
WebInspector.UISourceCode.Message.prototype = {
/**
@@ -939,7 +939,7 @@ WebInspector.UISourceCode.Message.prototype = {
{
this._uiSourceCode.removeMessage(this);
}
-}
+};
/**
* @constructor
@@ -952,7 +952,7 @@ WebInspector.UISourceCode.LineMarker = function(line, type, data)
this._line = line;
this._type = type;
this._data = data;
-}
+};
WebInspector.UISourceCode.LineMarker.prototype = {
/**
@@ -978,7 +978,7 @@ WebInspector.UISourceCode.LineMarker.prototype = {
{
return this._data;
}
-}
+};
/**
* @constructor
@@ -989,4 +989,4 @@ WebInspector.UISourceCodeMetadata = function(modificationTime, contentSize)
{
this.modificationTime = modificationTime;
this.contentSize = contentSize;
-}
+};

Powered by Google App Engine
This is Rietveld 408576698