| Index: sdk/lib/_internal/compiler/implementation/js/template.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/js/template.dart b/sdk/lib/_internal/compiler/implementation/js/template.dart
|
| index 4d1f13db1284dd750979b7d482b7dfb651277021..f223691228fdcf25a756de57c10a41c35b985b60 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/js/template.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/js/template.dart
|
| @@ -458,12 +458,12 @@ class InstantiatorGeneratorVisitor implements NodeVisitor<Instantiator> {
|
|
|
| Instantiator visitAssignment(Assignment node) {
|
| Instantiator makeLeftHandSide = visit(node.leftHandSide);
|
| - Instantiator makeCompoundTarget = visitNullable(node.compoundTarget);
|
| + String op = node.op;
|
| Instantiator makeValue = visitNullable(node.value);
|
| return (arguments) {
|
| - return new Assignment._internal(
|
| + return new Assignment.compound(
|
| makeLeftHandSide(arguments),
|
| - makeCompoundTarget(arguments),
|
| + op,
|
| makeValue(arguments));
|
| };
|
| }
|
|
|