| Index: lib/compiler/implementation/universe/universe.dart
|
| diff --git a/lib/compiler/implementation/universe/universe.dart b/lib/compiler/implementation/universe/universe.dart
|
| index 76a9aa5e2982c49da89bf3879022533f019f9641..505c5d4e89aa5b9a57079fa035dbaeb4268f491e 100644
|
| --- a/lib/compiler/implementation/universe/universe.dart
|
| +++ b/lib/compiler/implementation/universe/universe.dart
|
| @@ -214,7 +214,7 @@ class Selector {
|
| /** Check whether this is a call to 'assert'. */
|
| bool isAssert() => isCall() && identical(name.stringValue, "assert");
|
|
|
| - int hashCode() => argumentCount + 1000 * namedArguments.length;
|
| + int get hashCode => argumentCount + 1000 * namedArguments.length;
|
| int get namedArgumentCount => namedArguments.length;
|
| int get positionalArgumentCount => argumentCount - namedArgumentCount;
|
| DartType get receiverType => null;
|
|
|