| Index: lib/compiler/implementation/ssa/builder.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/ssa/builder.dart (revision 12904)
|
| +++ lib/compiler/implementation/ssa/builder.dart (working copy)
|
| @@ -1332,7 +1332,9 @@
|
| // for us here?
|
| LibraryElement library = body.getLibrary();
|
| Selector selector = new Selector.call(name, library, arity);
|
| - add(new HInvokeDynamicMethod(selector, bodyCallInputs));
|
| + HInstruction invoke = new HInvokeDynamicMethod(selector, bodyCallInputs);
|
| + invoke.element = body;
|
| + add(invoke);
|
| }
|
| close(new HReturn(newObject)).addSuccessor(graph.exit);
|
| return closeFunction();
|
|
|