| Index: tests/compiler/dart2js/minify_many_locals_test.dart
|
| ===================================================================
|
| --- tests/compiler/dart2js/minify_many_locals_test.dart (revision 17552)
|
| +++ tests/compiler/dart2js/minify_many_locals_test.dart (working copy)
|
| @@ -20,8 +20,7 @@
|
| RegExp re = new RegExp(r"\(a,b,c");
|
| Expect.isTrue(re.hasMatch(generated));
|
|
|
| - // 'z' will be used as a local.
|
| - re = new RegExp(r"x,y,A,B,C");
|
| + re = new RegExp(r"x,y,z,A,B,C");
|
| Expect.isTrue(re.hasMatch(generated));
|
|
|
| re = new RegExp(r"Y,Z,a0,a1,a2,a3,a4,a5,a6");
|
|
|