| Index: test/dart_codegen/expect/convert/html_escape.dart
|
| diff --git a/test/dart_codegen/expect/convert/html_escape.dart b/test/dart_codegen/expect/convert/html_escape.dart
|
| index 6ae348bcd000938aa1fcc6dbc7912aea5ced802f..54889a403479d5f09b778b359970781b569d57c4 100644
|
| --- a/test/dart_codegen/expect/convert/html_escape.dart
|
| +++ b/test/dart_codegen/expect/convert/html_escape.dart
|
| @@ -19,9 +19,7 @@ var val = _convert(text, 0, text.length);
|
| }
|
| String _convert(String text, int start, int end) {
|
| StringBuffer result = null;
|
| - for (int i = start;
|
| - i < end;
|
| - i++) {
|
| + for (int i = start; i < end; i++) {
|
| var ch = text[i];
|
| String replace = null;
|
| switch (ch) {case '&': replace = '&';
|
|
|