| Index: lib/compiler/implementation/universe.dart
|
| diff --git a/lib/compiler/implementation/universe.dart b/lib/compiler/implementation/universe.dart
|
| index 774a7eb20bfbd73eaf05437f895a48404361549e..506d47591a7d15db0ef2ed6b30b950320862625a 100644
|
| --- a/lib/compiler/implementation/universe.dart
|
| +++ b/lib/compiler/implementation/universe.dart
|
| @@ -141,11 +141,11 @@ class Selector implements Hashable {
|
| : this(SelectorKind.CALL, name, library, arity, named);
|
|
|
| Selector.callClosure(int arity, [List<SourceString> named = const []])
|
| - : this(SelectorKind.CALL, Namer.CLOSURE_INVOCATION_NAME, null,
|
| + : this(SelectorKind.CALL, Compiler.CALL_OPERATOR_NAME, null,
|
| arity, named);
|
|
|
| Selector.callClosureFrom(Selector selector)
|
| - : this(SelectorKind.CALL, Namer.CLOSURE_INVOCATION_NAME, null,
|
| + : this(SelectorKind.CALL, Compiler.CALL_OPERATOR_NAME, null,
|
| selector.argumentCount, selector.namedArguments);
|
|
|
| // TODO(kasperl): This belongs somewhere else.
|
|
|