From bbff7403fbf46f9ad92240ac213df8d30ef31b64 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 20 Sep 2018 02:56:13 +0200 Subject: update packages --- node_modules/tslint/lib/rules/adjacentOverloadSignaturesRule.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'node_modules/tslint/lib/rules/adjacentOverloadSignaturesRule.js') diff --git a/node_modules/tslint/lib/rules/adjacentOverloadSignaturesRule.js b/node_modules/tslint/lib/rules/adjacentOverloadSignaturesRule.js index da1303ba3..7bba51a80 100644 --- a/node_modules/tslint/lib/rules/adjacentOverloadSignaturesRule.js +++ b/node_modules/tslint/lib/rules/adjacentOverloadSignaturesRule.js @@ -111,7 +111,7 @@ function getOverloadKey(node) { return undefined; } var _a = typeof info === "string" ? [false, info] : [info.computed, info.name], computed = _a[0], name = _a[1]; - var isStatic = Lint.hasModifier(node.modifiers, ts.SyntaxKind.StaticKeyword); + var isStatic = utils.hasModifier(node.modifiers, ts.SyntaxKind.StaticKeyword); return (computed ? "0" : "1") + (isStatic ? "0" : "1") + name; } exports.getOverloadKey = getOverloadKey; -- cgit v1.2.3