| Index: pkg/compiler/lib/src/ssa/codegen.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/codegen.dart b/pkg/compiler/lib/src/ssa/codegen.dart
|
| index 69ee9c85266ab2d6ee554561096735444866e087..688030a2ccbaad531bc876bc6249400b3cff4d6f 100644
|
| --- a/pkg/compiler/lib/src/ssa/codegen.dart
|
| +++ b/pkg/compiler/lib/src/ssa/codegen.dart
|
| @@ -1751,7 +1751,9 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
|
| .withSourceInformation(node.sourceInformation);
|
| if (node.isSetter) {
|
| registry.registerStaticUse(
|
| - new StaticUse.superSet(superElement));
|
| + superElement.isSetter
|
| + ? new StaticUse.superSetterSet(superElement)
|
| + : new StaticUse.superFieldSet(superElement));
|
| use(node.value);
|
| push(new js.Assignment(access, pop())
|
| .withSourceInformation(node.sourceInformation));
|
|
|