File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2635,10 +2635,10 @@ namespace ts {
26352635 || node.kind === SyntaxKind.ExportAssignment && exportAssignmentIsAlias(node as ExportAssignment)
26362636 || isBinaryExpression(node) && getAssignmentDeclarationKind(node) === AssignmentDeclarationKind.ModuleExports && exportAssignmentIsAlias(node)
26372637 || 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)
26422642 || node.kind === SyntaxKind.ShorthandPropertyAssignment
26432643 || node.kind === SyntaxKind.PropertyAssignment && isAliasableOrJsExpression((node as PropertyAssignment).initializer)
26442644 || node.kind === SyntaxKind.VariableDeclaration && isVariableDeclarationInitializedToBareOrAccessedRequire(node)
You can’t perform that action at this time.
0 commit comments