| Index: tests/compiler/dart2js_native/native_call_arity1_frog_test.dart
|
| ===================================================================
|
| --- tests/compiler/dart2js_native/native_call_arity1_frog_test.dart (revision 13895)
|
| +++ tests/compiler/dart2js_native/native_call_arity1_frog_test.dart (working copy)
|
| @@ -51,9 +51,6 @@
|
| Expect.equals(2, b.foo(10, 20));
|
| Expect.equals(3, b.foo(10, 20, 30));
|
|
|
| - Expect.equals(1, b.foo(x: 10)); // 1 = x
|
| - Expect.equals(2, b.foo(y: 20)); // 2 = x, y
|
| - Expect.equals(3, b.foo(z: 30)); // 3 = x, y, z
|
| Expect.throws(() => b.foo(10, 20, 30, 40));
|
| }
|
|
|
| @@ -71,9 +68,6 @@
|
| Expect.equals(2, b.foo(10, 20));
|
| Expect.equals(3, b.foo(10, 20, 30));
|
|
|
| - Expect.equals(1, b.foo(x: 10));
|
| - Expect.equals(2, b.foo(y: 20));
|
| - Expect.equals(3, b.foo(z: 30));
|
| Expect.throws(() => b.foo(10, 20, 30, 40));
|
| }
|
|
|
|
|