aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tslint/lib/rules/noThisAssignmentRule.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/tslint/lib/rules/noThisAssignmentRule.js')
-rw-r--r--node_modules/tslint/lib/rules/noThisAssignmentRule.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/node_modules/tslint/lib/rules/noThisAssignmentRule.js b/node_modules/tslint/lib/rules/noThisAssignmentRule.js
index 64cacccf8..5d509faa8 100644
--- a/node_modules/tslint/lib/rules/noThisAssignmentRule.js
+++ b/node_modules/tslint/lib/rules/noThisAssignmentRule.js
@@ -33,7 +33,7 @@ var parseConfigOptions = function (configOptions) {
}
return { allowedNames: allowedNames, allowDestructuring: allowDestructuring };
};
-var Rule = (function (_super) {
+var Rule = /** @class */ (function (_super) {
tslib_1.__extends(Rule, _super);
function Rule() {
return _super !== null && _super.apply(this, arguments) || this;
@@ -82,7 +82,7 @@ var Rule = (function (_super) {
return Rule;
}(Lint.Rules.AbstractRule));
exports.Rule = Rule;
-var NoThisAssignmentWalker = (function (_super) {
+var NoThisAssignmentWalker = /** @class */ (function (_super) {
tslib_1.__extends(NoThisAssignmentWalker, _super);
function NoThisAssignmentWalker() {
var _this = _super !== null && _super.apply(this, arguments) || this;