File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2635,10 +2635,10 @@ namespace ts {
2635
2635
|| node.kind === SyntaxKind.ExportAssignment && exportAssignmentIsAlias(node as ExportAssignment)
2636
2636
|| isBinaryExpression(node) && getAssignmentDeclarationKind(node) === AssignmentDeclarationKind.ModuleExports && exportAssignmentIsAlias(node)
2637
2637
|| isAccessExpression(node)
2638
- && isBinaryExpression(node.parent)
2639
- && node.parent.left === node
2640
- && node.parent.operatorToken.kind === SyntaxKind.EqualsToken
2641
- && isAliasableOrJsExpression(node.parent.right)
2638
+ && isBinaryExpression(node.parent)
2639
+ && node.parent.left === node
2640
+ && node.parent.operatorToken.kind === SyntaxKind.EqualsToken
2641
+ && isAliasableOrJsExpression(node.parent.right)
2642
2642
|| node.kind === SyntaxKind.ShorthandPropertyAssignment
2643
2643
|| node.kind === SyntaxKind.PropertyAssignment && isAliasableOrJsExpression((node as PropertyAssignment).initializer)
2644
2644
|| node.kind === SyntaxKind.VariableDeclaration && isVariableDeclarationInitializedToBareOrAccessedRequire(node)
You can’t perform that action at this time.
0 commit comments