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