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