| Index: pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart
|
| diff --git a/pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart b/pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart
|
| index 2962837dd758d53d7b918c86bb6b1d78edb742e9..1a084ac11b6a5de72ffee0f2d815a1c8935050c6 100644
|
| --- a/pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart
|
| +++ b/pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart
|
| @@ -9,6 +9,7 @@ import '../constants/values.dart' as values;
|
| import '../dart_types.dart' show DartType, InterfaceType, TypeVariableType;
|
| import '../elements/elements.dart';
|
| import '../io/source_information.dart' show SourceInformation;
|
| +import '../types/types.dart' show TypeMask;
|
| import '../universe/universe.dart' show Selector;
|
|
|
| import '../cps_ir/builtin_operator.dart';
|
| @@ -160,7 +161,6 @@ class Assign extends Expression {
|
| */
|
| abstract class Invoke {
|
| List<Expression> get arguments;
|
| - Selector get selector;
|
| }
|
|
|
| /**
|
| @@ -200,12 +200,13 @@ class InvokeStatic extends Expression implements Invoke {
|
| class InvokeMethod extends Expression implements Invoke {
|
| Expression receiver;
|
| final Selector selector;
|
| + final TypeMask mask;
|
| final List<Expression> arguments;
|
|
|
| /// If true, it is known that the receiver cannot be `null`.
|
| bool receiverIsNotNull = false;
|
|
|
| - InvokeMethod(this.receiver, this.selector, this.arguments) {
|
| + InvokeMethod(this.receiver, this.selector, this.mask, this.arguments) {
|
| assert(receiver != null);
|
| }
|
|
|
|
|