| Index: tests/compiler/dart2js/cps_ir/expected/operators_7.js
|
| diff --git a/tests/compiler/dart2js/cps_ir/expected/operators_7.js b/tests/compiler/dart2js/cps_ir/expected/operators_7.js
|
| index b81aaa9ccf14caba35aaa910db3f13f414514573..9b278bffc25258fb2c60315f8b6cc03b7b5e2768 100644
|
| --- a/tests/compiler/dart2js/cps_ir/expected/operators_7.js
|
| +++ b/tests/compiler/dart2js/cps_ir/expected/operators_7.js
|
| @@ -10,15 +10,14 @@
|
| // }
|
|
|
| function() {
|
| - var line = "" + 6;
|
| V.Foo$();
|
| if (typeof dartPrint == "function")
|
| - dartPrint(line);
|
| + dartPrint("6");
|
| else if (typeof console == "object" && typeof console.log != "undefined")
|
| - console.log(line);
|
| + console.log("6");
|
| else if (!(typeof window == "object")) {
|
| if (!(typeof print == "function"))
|
| - throw "Unable to print message: " + String(line);
|
| - print(line);
|
| + throw "Unable to print message: " + String("6");
|
| + print("6");
|
| }
|
| }
|
|
|