| Index: lib/compiler/implementation/ssa/builder.dart
|
| diff --git a/lib/compiler/implementation/ssa/builder.dart b/lib/compiler/implementation/ssa/builder.dart
|
| index fae30e27db03de34ff5af27137d4e76e7d4c6eb7..cd3d382866dc5e0d3e5aa1efd604593d27e9e541 100644
|
| --- a/lib/compiler/implementation/ssa/builder.dart
|
| +++ b/lib/compiler/implementation/ssa/builder.dart
|
| @@ -2165,7 +2165,7 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
|
| // If the isolate library is not used, we just invoke the
|
| // closure.
|
| visit(link.tail.head);
|
| - Selector selector = new Selector.callAny(0);
|
| + Selector selector = new Selector.callClosure(0);
|
| push(new HInvokeClosure(selector, <HInstruction>[pop()]));
|
| } else {
|
| // Call a helper method from the isolate library.
|
| @@ -2205,7 +2205,7 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
|
| visit(closure);
|
| List<HInstruction> inputs = <HInstruction>[pop()];
|
| String invocationName = compiler.namer.closureInvocationName(
|
| - new Selector.callAny(params.requiredParameterCount));
|
| + new Selector.callClosure(params.requiredParameterCount));
|
| push(new HForeign(new DartString.literal('#.$invocationName'),
|
| const LiteralDartString('var'),
|
| inputs));
|
|
|