| Index: sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/builder.dart b/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| index db63457ecbf9f5de6095e5cf639ededaae183727..cab86dd5aa5504f8855e7144bd3a9d0b860804a3 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| @@ -2264,7 +2264,7 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
|
| }
|
|
|
| String getTargetName(ErroneousElement error, [String prefix]) {
|
| - String result = error.targetName.slowToString();
|
| + String result = error.name.slowToString();
|
| if (?prefix) {
|
| result = '$prefix $result';
|
| }
|
| @@ -4345,7 +4345,7 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
|
| if (endFinallyBlock != null) {
|
| endFinallyBlock.addSuccessor(exitBlock);
|
| }
|
| -
|
| +
|
| // If a block inside try/catch aborts (eg with a return statement),
|
| // we explicitely mark this block a predecessor of the catch
|
| // block and the finally block.
|
|
|