| Index: pkg/compiler/lib/src/kernel/element_map.dart
|
| diff --git a/pkg/compiler/lib/src/kernel/element_map.dart b/pkg/compiler/lib/src/kernel/element_map.dart
|
| index 7987d1fca9fac5b88a89449e2f812a88d8838cb6..1d52388a4cbb9d356c7f049c501b1112cd68f449 100644
|
| --- a/pkg/compiler/lib/src/kernel/element_map.dart
|
| +++ b/pkg/compiler/lib/src/kernel/element_map.dart
|
| @@ -76,6 +76,10 @@ abstract class KernelToElementMap {
|
| MemberEntity getSuperMember(ir.Member context, ir.Name name, ir.Member target,
|
| {bool setter: false});
|
|
|
| + /// Returns the `noSuchMethod` [FunctionEntity] call from a
|
| + /// `super.noSuchMethod` invocation within [cls].
|
| + FunctionEntity getSuperNoSuchMethod(ClassEntity cls);
|
| +
|
| /// Returns the [Name] corresponding to [name].
|
| Name getName(ir.Name name);
|
|
|
| @@ -188,10 +192,6 @@ abstract class KernelToElementMapForBuilding implements KernelToElementMap {
|
| /// the initializer is not a constant expression.
|
| ConstantValue getFieldConstantValue(ir.Field field);
|
|
|
| - /// Returns the `noSuchMethod` [FunctionEntity] call from a
|
| - /// `super.noSuchMethod` invocation within [cls].
|
| - FunctionEntity getSuperNoSuchMethod(ClassEntity cls);
|
| -
|
| /// Returns a [Spannable] for a message pointing to the IR [node] in the
|
| /// context of [member].
|
| Spannable getSpannable(MemberEntity member, ir.Node node);
|
|
|