| Index: lib/compiler/implementation/ssa/builder.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/ssa/builder.dart (revision 6835)
|
| +++ lib/compiler/implementation/ssa/builder.dart (working copy)
|
| @@ -1853,9 +1853,12 @@
|
| return graph.addConstant(constant);
|
| }
|
|
|
| - FunctionParameters parameters = element.computeParameters(compiler);
|
| - return selector.addArgumentsToList(arguments, list, parameters,
|
| - compileArgument, compileConstant);
|
| + return selector.addArgumentsToList(arguments,
|
| + list,
|
| + element,
|
| + compileArgument,
|
| + compileConstant,
|
| + compiler);
|
| }
|
|
|
| void addGenericSendArgumentsToList(Link<Node> link, List<HInstruction> list) {
|
|
|