| Index: test/dart_codegen/expect/core/invocation.dart
|
| diff --git a/test/dart_codegen/expect/core/invocation.dart b/test/dart_codegen/expect/core/invocation.dart
|
| index 4a62f100a1f6693d546273d76c180804b2d28845..17b9fb4035f41dcc0ee38fc01916f481886b1545 100644
|
| --- a/test/dart_codegen/expect/core/invocation.dart
|
| +++ b/test/dart_codegen/expect/core/invocation.dart
|
| @@ -1,11 +1,9 @@
|
| part of dart.core;
|
| -
|
| -abstract class Invocation {
|
| - Symbol get memberName;
|
| - List get positionalArguments;
|
| - Map<Symbol, dynamic> get namedArguments;
|
| - bool get isMethod;
|
| - bool get isGetter;
|
| - bool get isSetter;
|
| - bool get isAccessor => isGetter || isSetter;
|
| + abstract class Invocation {Symbol get memberName;
|
| + List get positionalArguments;
|
| + Map<Symbol, dynamic> get namedArguments;
|
| + bool get isMethod;
|
| + bool get isGetter;
|
| + bool get isSetter;
|
| + bool get isAccessor => isGetter || isSetter;
|
| }
|
|
|