| Index: tests/compiler/dart2js/js_backend_cps_ir_interceptors_test.dart
|
| diff --git a/tests/compiler/dart2js/js_backend_cps_ir_interceptors_test.dart b/tests/compiler/dart2js/js_backend_cps_ir_interceptors_test.dart
|
| index 374b75197ef44920457e3fb6ca80560a4322852f..4e7b0cfdcdd8abf19ae8225e9395cce55a7a01e9 100644
|
| --- a/tests/compiler/dart2js/js_backend_cps_ir_interceptors_test.dart
|
| +++ b/tests/compiler/dart2js/js_backend_cps_ir_interceptors_test.dart
|
| @@ -33,15 +33,15 @@ main() {
|
| }""",
|
| r"""
|
| function() {
|
| - var l = ["hest", ["h", "e", "s", "t"]], i = 0, x, j;
|
| + var l = ["hest", ["h", "e", "s", "t"]], i = 0, x_, x, j;
|
| P.print(l.length);
|
| while (i < l.length) {
|
| if (i < 0 || i >= l.length)
|
| H.ioore(l, i);
|
| - x = l[i];
|
| + x_ = J.getInterceptor$as(x = l[i]);
|
| j = 0;
|
| - while (j < J.getInterceptor$as(x).get$length(x)) {
|
| - P.print(J.getInterceptor$as(x).$index(x, j));
|
| + while (j < x_.get$length(x)) {
|
| + P.print(x_.$index(x, j));
|
| j = j + 1;
|
| }
|
| i = i + 1;
|
|
|