| Index: pkg/compiler/lib/src/resolution/semantic_visitor.dart
|
| diff --git a/pkg/compiler/lib/src/resolution/semantic_visitor.dart b/pkg/compiler/lib/src/resolution/semantic_visitor.dart
|
| index 791a25931cc9318dcb64843b00efcbdfe89f3f9c..0204c89334abbdfb27bc1bf058d974abb8fcf658 100644
|
| --- a/pkg/compiler/lib/src/resolution/semantic_visitor.dart
|
| +++ b/pkg/compiler/lib/src/resolution/semantic_visitor.dart
|
| @@ -287,6 +287,21 @@ abstract class SemanticSendVisitor<R, A> {
|
| CallStructure callStructure,
|
| A arg);
|
|
|
| + /// Invocation of the local [function] with incompatible [arguments].
|
| + ///
|
| + /// For instance:
|
| + /// m() {
|
| + /// o(a) {}
|
| + /// return o(null, 42);
|
| + /// }
|
| + ///
|
| + R visitLocalFunctionIncompatibleInvoke(
|
| + Send node,
|
| + LocalFunctionElement function,
|
| + NodeList arguments,
|
| + CallStructure callStructure,
|
| + A arg);
|
| +
|
| /// Getter call on [receiver] of the property defined by [selector].
|
| ///
|
| /// For instance
|
|
|