| Index: tests/compiler/dart2js/js_backend_cps_ir_basic_test.dart
|
| diff --git a/tests/compiler/dart2js/js_backend_cps_ir_basic_test.dart b/tests/compiler/dart2js/js_backend_cps_ir_basic_test.dart
|
| index 1243ba2d337d322edfa90d67ecccf0ec5bf6ae19..cde5ccc047017b1018745e250897e535644ba2f8 100644
|
| --- a/tests/compiler/dart2js/js_backend_cps_ir_basic_test.dart
|
| +++ b/tests/compiler/dart2js/js_backend_cps_ir_basic_test.dart
|
| @@ -15,21 +15,21 @@ foo(a, [b = "b"]) => b;
|
| bar(a, {b: "b", c: "c"}) => c;
|
| main() {
|
| foo(0);
|
| - foo(1, 2);
|
| - bar(3);
|
| - bar(4, b: 5);
|
| - bar(6, c: 7);
|
| - bar(8, b: 9, c: 10);
|
| + foo(0, 1);
|
| + bar(0);
|
| + bar(0, b: 1);
|
| + bar(0, c: 1);
|
| + bar(0, b: 1, c: 2);
|
| }
|
| """,
|
| """
|
| function() {
|
| V.foo(0, "b");
|
| - V.foo(1, 2);
|
| - V.bar(3, "b", "c");
|
| - V.bar(4, 5, "c");
|
| - V.bar(6, "b", 7);
|
| - V.bar(8, 9, 10);
|
| + V.foo(0, 1);
|
| + V.bar(0, "b", "c");
|
| + V.bar(0, 1, "c");
|
| + V.bar(0, "b", 1);
|
| + V.bar(0, 1, 2);
|
| return null;
|
| }"""),
|
| const TestEntry(
|
|
|