| Index: tests/compiler/dart2js/js_backend_cps_ir_operators_test.dart
|
| diff --git a/tests/compiler/dart2js/js_backend_cps_ir_operators_test.dart b/tests/compiler/dart2js/js_backend_cps_ir_operators_test.dart
|
| index 152a552a0a46401fa22f718c515a0961952bde87..08914caeaa0c920b14c514cc8b7f6d1a56996c6f 100644
|
| --- a/tests/compiler/dart2js/js_backend_cps_ir_operators_test.dart
|
| +++ b/tests/compiler/dart2js/js_backend_cps_ir_operators_test.dart
|
| @@ -130,11 +130,10 @@ main() {
|
| print(list);
|
| }""", r"""
|
| function() {
|
| - var list = [1, 2, 3], res, v0;
|
| + var list = [1, 2, 3], v0;
|
| list[1] = 6;
|
| - if (!(typeof (res = C.JSArray_methods.toString$0(list)) === "string"))
|
| + if (!(typeof (v0 = P.IterableBase_iterableToFullString(list, "[", "]")) === "string"))
|
| throw H.wrapException(H.argumentErrorValue(list));
|
| - v0 = res;
|
| if (typeof dartPrint == "function")
|
| dartPrint(v0);
|
| else if (typeof console == "object" && typeof console.log != "undefined")
|
|
|