| Index: test/dart_codegen/expect/convert/string_conversion.dart
|
| diff --git a/test/dart_codegen/expect/convert/string_conversion.dart b/test/dart_codegen/expect/convert/string_conversion.dart
|
| index 3661424f35ea2e0a5ac580192f28cd848dbf12c6..f8aae5b08ca512616436e3427fdeafe05ae7b801 100644
|
| --- a/test/dart_codegen/expect/convert/string_conversion.dart
|
| +++ b/test/dart_codegen/expect/convert/string_conversion.dart
|
| @@ -80,9 +80,7 @@ return new _StringConversionSinkAsStringSinkAdapter(this);
|
| }
|
| void addSlice(String str, int start, int end, bool isLast) {
|
| if (start != 0 || end != str.length) {
|
| -for (int i = start;
|
| - i < end;
|
| - i++) {
|
| +for (int i = start; i < end; i++) {
|
| _stringSink.writeCharCode(str.codeUnitAt(i));
|
| }
|
| }
|
|
|