aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tslint/lib/rules/curlyRule.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/tslint/lib/rules/curlyRule.js')
-rw-r--r--node_modules/tslint/lib/rules/curlyRule.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/node_modules/tslint/lib/rules/curlyRule.js b/node_modules/tslint/lib/rules/curlyRule.js
index cd2bc205a..dbd14038d 100644
--- a/node_modules/tslint/lib/rules/curlyRule.js
+++ b/node_modules/tslint/lib/rules/curlyRule.js
@@ -22,7 +22,7 @@ var ts = require("typescript");
var Lint = require("../index");
var OPTION_AS_NEEDED = "as-needed";
var OPTION_IGNORE_SAME_LINE = "ignore-same-line";
-var Rule = (function (_super) {
+var Rule = /** @class */ (function (_super) {
tslib_1.__extends(Rule, _super);
function Rule() {
return _super !== null && _super.apply(this, arguments) || this;
@@ -97,7 +97,7 @@ function isBlockUnnecessary(node) {
&& parent.thenStatement === node
&& parent.elseStatement !== undefined);
}
-var CurlyWalker = (function (_super) {
+var CurlyWalker = /** @class */ (function (_super) {
tslib_1.__extends(CurlyWalker, _super);
function CurlyWalker() {
return _super !== null && _super.apply(this, arguments) || this;