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