| Index: pkg/compiler/lib/src/native/ssa.dart
|
| diff --git a/pkg/compiler/lib/src/native/ssa.dart b/pkg/compiler/lib/src/native/ssa.dart
|
| index f3134c37ed3aaddd9f07ab945a301b0e41c7f9bb..c84dba162f8e865530469e63b32f9b46833b6807 100644
|
| --- a/pkg/compiler/lib/src/native/ssa.dart
|
| +++ b/pkg/compiler/lib/src/native/ssa.dart
|
| @@ -33,7 +33,7 @@ void handleSsaNative(SsaBuilder builder, Expression nativeBody) {
|
| // TODO(ngeoffray): For static methods, we could pass a method with a
|
| // defined arity.
|
| Element helper = backend.helpers.closureConverter;
|
| - builder.pushInvokeStatic(nativeBody, helper, [local, arity]);
|
| + builder.pushInvokeStatic(helper, [local, arity], location: nativeBody);
|
| HInstruction closure = builder.pop();
|
| return closure;
|
| }
|
|
|