File tree 1 file changed +2
-2
lines changed
src/compiler/transformers 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ namespace ts {
35
35
if ( isCompoundAssignment ( operator . kind ) && isLogicalOrCoalescingAssignmentOperator ( operator . kind ) ) {
36
36
const nonAssignmentOperator = getNonAssignmentOperatorForCompoundAssignment ( operator . kind ) ;
37
37
let left = skipParentheses ( visitNode ( binaryExpression . left , visitor , isLeftHandSideExpression ) ) ;
38
- let assignmentTarget = left
38
+ let assignmentTarget = left ;
39
39
const right = skipParentheses ( visitNode ( binaryExpression . right , visitor , isExpression ) ) ;
40
40
if ( isPropertyAccessExpression ( left ) || isElementAccessExpression ( left ) ) {
41
- const tempVariable = createTempVariable ( hoistVariableDeclaration )
41
+ const tempVariable = createTempVariable ( hoistVariableDeclaration ) ;
42
42
if ( isPropertyAccessExpression ( left ) ) {
43
43
assignmentTarget = createPropertyAccess (
44
44
tempVariable ,
You can’t perform that action at this time.
0 commit comments