diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-10-14 18:40:54 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-10-14 18:40:54 +0200 |
commit | 9df98e65f842cf3acae09cbdd969966f42d64469 (patch) | |
tree | f071d3e09a342c208fb8e1cd3f5241d64fbfbaf3 /node_modules/tslint/lib/verify | |
parent | 008926b18470e7f394cd640302957b29728a9803 (diff) |
update dependencies
Diffstat (limited to 'node_modules/tslint/lib/verify')
-rw-r--r-- | node_modules/tslint/lib/verify/lines.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/node_modules/tslint/lib/verify/lines.js b/node_modules/tslint/lib/verify/lines.js index c95fd0f8a..3b15c0875 100644 --- a/node_modules/tslint/lib/verify/lines.js +++ b/node_modules/tslint/lib/verify/lines.js @@ -17,13 +17,13 @@ Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); // Use classes here instead of interfaces because we want runtime type data -var Line = (function () { +var Line = /** @class */ (function () { function Line() { } return Line; }()); exports.Line = Line; -var CodeLine = (function (_super) { +var CodeLine = /** @class */ (function (_super) { tslib_1.__extends(CodeLine, _super); function CodeLine(contents) { var _this = _super.call(this) || this; @@ -33,7 +33,7 @@ var CodeLine = (function (_super) { return CodeLine; }(Line)); exports.CodeLine = CodeLine; -var MessageSubstitutionLine = (function (_super) { +var MessageSubstitutionLine = /** @class */ (function (_super) { tslib_1.__extends(MessageSubstitutionLine, _super); function MessageSubstitutionLine(key, message) { var _this = _super.call(this) || this; @@ -44,7 +44,7 @@ var MessageSubstitutionLine = (function (_super) { return MessageSubstitutionLine; }(Line)); exports.MessageSubstitutionLine = MessageSubstitutionLine; -var ErrorLine = (function (_super) { +var ErrorLine = /** @class */ (function (_super) { tslib_1.__extends(ErrorLine, _super); function ErrorLine(startCol) { var _this = _super.call(this) || this; @@ -54,7 +54,7 @@ var ErrorLine = (function (_super) { return ErrorLine; }(Line)); exports.ErrorLine = ErrorLine; -var MultilineErrorLine = (function (_super) { +var MultilineErrorLine = /** @class */ (function (_super) { tslib_1.__extends(MultilineErrorLine, _super); function MultilineErrorLine(startCol) { return _super.call(this, startCol) || this; @@ -62,7 +62,7 @@ var MultilineErrorLine = (function (_super) { return MultilineErrorLine; }(ErrorLine)); exports.MultilineErrorLine = MultilineErrorLine; -var EndErrorLine = (function (_super) { +var EndErrorLine = /** @class */ (function (_super) { tslib_1.__extends(EndErrorLine, _super); function EndErrorLine(startCol, endCol, message) { var _this = _super.call(this, startCol) || this; |