| Index: sdk/lib/_internal/compiler/implementation/resolution/members.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/resolution/members.dart (revision 23237)
|
| +++ sdk/lib/_internal/compiler/implementation/resolution/members.dart (working copy)
|
| @@ -2017,7 +2017,7 @@
|
| }
|
| // TODO(johnniwinther): Ensure correct behavior if currentClass is a
|
| // patch.
|
| - target = currentClass.lookupSuperSelector(selector);
|
| + target = currentClass.lookupSuperSelector(selector, compiler);
|
| // [target] may be null which means invoking noSuchMethod on
|
| // super.
|
| if (target == null) {
|
| @@ -2350,7 +2350,7 @@
|
| registerSend(getterSelector, getter);
|
| mapping.setGetterSelectorInComplexSendSet(node, getterSelector);
|
| if (node.isSuperCall) {
|
| - getter = currentClass.lookupSuperSelector(getterSelector);
|
| + getter = currentClass.lookupSuperSelector(getterSelector, compiler);
|
| if (getter == null) {
|
| target = warnAndCreateErroneousElement(
|
| node, selector.name, MessageKind.NO_SUCH_SUPER_MEMBER,
|
|
|