File tree 2 files changed +1
-5
lines changed
2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -81,11 +81,6 @@ namespace ts {
81
81
const binaryOperatorPrecedence = getOperatorPrecedence ( SyntaxKind . BinaryExpression , binaryOperator ) ;
82
82
const binaryOperatorAssociativity = getOperatorAssociativity ( SyntaxKind . BinaryExpression , binaryOperator ) ;
83
83
const emittedOperand = skipPartiallyEmittedExpressions ( operand ) ;
84
- // If a privateIdentifier is on the left side, this is not a real expression and
85
- // should not become parenthesized
86
- if ( isLeftSideOfBinary && isPrivateIdentifier ( operand ) ) {
87
- return false ;
88
- }
89
84
if ( ! isLeftSideOfBinary && operand . kind === SyntaxKind . ArrowFunction && binaryOperatorPrecedence > OperatorPrecedence . Assignment ) {
90
85
// We need to parenthesize arrow functions on the right side to avoid it being
91
86
// parsed as parenthesized expression: `a && (() => {})`
Original file line number Diff line number Diff line change @@ -3706,6 +3706,7 @@ namespace ts {
3706
3706
case SyntaxKind . ThisKeyword :
3707
3707
case SyntaxKind . SuperKeyword :
3708
3708
case SyntaxKind . Identifier :
3709
+ case SyntaxKind . PrivateIdentifier :
3709
3710
case SyntaxKind . NullKeyword :
3710
3711
case SyntaxKind . TrueKeyword :
3711
3712
case SyntaxKind . FalseKeyword :
You can’t perform that action at this time.
0 commit comments