| Index: sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| index 290764580e504d8c8bae94f3bed5af191cdc4c7a..8b0173d9d712c660686d4924e2bddd60c2ba4b12 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| @@ -795,7 +795,7 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
|
| if (expression is js.Assignment) {
|
| js.Assignment assignment = expression;
|
| if (assignment.leftHandSide is js.VariableUse &&
|
| - assignment.compoundTarget == null) {
|
| + !assignment.isCompound) {
|
| expressionIsVariableAssignment = true;
|
| }
|
| }
|
|
|