| 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 e201af0d29d561e532b325594689818f3e68b88c..7a7352f1437a84d11923cb79ec1dc67ce97b82a3 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/codegen.dart
|
| @@ -261,7 +261,7 @@ abstract class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
|
| }
|
|
|
| void insertStatementAtStart(js.Statement statement) {
|
| - currentContainer.statements.insertRange(0, 1, statement);
|
| + currentContainer.statements.insert(0, statement);
|
| }
|
|
|
| /**
|
|
|