| Index: sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| index 95108911db00ac896ca8300c227ec88b7f0fc159..760b197b3f4a7d78296c23ba264525c6aa5c66b1 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| @@ -1214,7 +1214,7 @@ abstract class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
|
| if (handler == null) return;
|
|
|
| // Map the instructions to strings.
|
| - Iterable<Copy> copies = handler.copies.mappedBy((Copy copy) {
|
| + Iterable<Copy> copies = handler.copies.map((Copy copy) {
|
| return new Copy(variableNames.getName(copy.source),
|
| variableNames.getName(copy.destination));
|
| });
|
|
|