| Index: tests/compiler/dart2js/cps_ir/expected/codeUnitAt_1.js
|
| diff --git a/tests/compiler/dart2js/cps_ir/expected/codeUnitAt_1.js b/tests/compiler/dart2js/cps_ir/expected/codeUnitAt_1.js
|
| index 92a19696af7b3ae60b8cd7ef9b7f2c36f7231a33..9043a3f1102cb4c01b7560d44e182522b81294b8 100644
|
| --- a/tests/compiler/dart2js/cps_ir/expected/codeUnitAt_1.js
|
| +++ b/tests/compiler/dart2js/cps_ir/expected/codeUnitAt_1.js
|
| @@ -5,14 +5,13 @@
|
| // }
|
|
|
| function() {
|
| - var line = "" + 65;
|
| if (typeof dartPrint == "function")
|
| - dartPrint(line);
|
| + dartPrint("65");
|
| else if (typeof console == "object" && typeof console.log != "undefined")
|
| - console.log(line);
|
| + console.log("65");
|
| else if (!(typeof window == "object")) {
|
| if (!(typeof print == "function"))
|
| - throw "Unable to print message: " + String(line);
|
| - print(line);
|
| + throw "Unable to print message: " + String("65");
|
| + print("65");
|
| }
|
| }
|
|
|