| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // This is a similar test to NativeCallArity1FrogTest, but makes sure | 5 // This is a similar test to NativeCallArity1FrogTest, but makes sure |
| 6 // that subclasses also get the right number of arguments. | 6 // that subclasses also get the right number of arguments. |
| 7 | 7 |
| 8 class A native "*A" { | 8 class A native "*A" { |
| 9 int foo([x, y]) native; | 9 int foo([x, y]) native; |
| 10 } | 10 } |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 testDynamicContext() { | 42 testDynamicContext() { |
| 43 var things = [makeA(), makeB()]; | 43 var things = [makeA(), makeB()]; |
| 44 var a = things[0]; | 44 var a = things[0]; |
| 45 var b = things[1]; | 45 var b = things[1]; |
| 46 | 46 |
| 47 Expect.equals(0, a.foo()); | 47 Expect.equals(0, a.foo()); |
| 48 Expect.equals(1, a.foo(10)); | 48 Expect.equals(1, a.foo(10)); |
| 49 Expect.equals(2, a.foo(10, 20)); | 49 Expect.equals(2, a.foo(10, 20)); |
| 50 Expect.throws(() => a.foo(10, 20, 30)); | 50 Expect.throws(() => a.foo(10, 20, 30)); |
| 51 | 51 |
| 52 Expect.equals(1, a.foo(x: 10)); // 1 = x | 52 Expect.equals(1, a.foo(10)); |
| 53 Expect.equals(2, a.foo(y: 20)); // 2 = x, y | 53 Expect.equals(2, a.foo(null, 20)); |
| 54 Expect.throws(() => a.foo(10, 20, 30)); | 54 Expect.throws(() => a.foo(10, 20, 30)); |
| 55 | 55 |
| 56 Expect.equals(0, b.foo()); | 56 Expect.equals(0, b.foo()); |
| 57 Expect.equals(1, b.foo(10)); | 57 Expect.equals(1, b.foo(10)); |
| 58 Expect.equals(2, b.foo(10, 20)); | 58 Expect.equals(2, b.foo(10, 20)); |
| 59 Expect.throws(() => b.foo(10, 20, 30)); | 59 Expect.throws(() => b.foo(10, 20, 30)); |
| 60 | 60 |
| 61 Expect.equals(1, b.foo(x: 10)); // 1 = x | 61 Expect.equals(1, b.foo(10)); |
| 62 Expect.equals(2, b.foo(y: 20)); // 2 = x, y | 62 Expect.equals(2, b.foo(null, 20)); |
| 63 Expect.throws(() => b.foo(10, 20, 30)); | 63 Expect.throws(() => b.foo(10, 20, 30)); |
| 64 } | 64 } |
| 65 | 65 |
| 66 testStaticContext() { | 66 testStaticContext() { |
| 67 A a = makeA(); | 67 A a = makeA(); |
| 68 B b = makeB(); | 68 B b = makeB(); |
| 69 | 69 |
| 70 Expect.equals(0, a.foo()); | 70 Expect.equals(0, a.foo()); |
| 71 Expect.equals(1, a.foo(10)); | 71 Expect.equals(1, a.foo(10)); |
| 72 Expect.equals(2, a.foo(10, 20)); | 72 Expect.equals(2, a.foo(10, 20)); |
| 73 Expect.throws(() => a.foo(10, 20, 30)); | 73 Expect.throws(() => a.foo(10, 20, 30)); |
| 74 | 74 |
| 75 Expect.equals(1, a.foo(x: 10)); // 1 = x | 75 Expect.equals(1, a.foo(10)); |
| 76 Expect.equals(2, a.foo(y: 20)); // 2 = x, y | 76 Expect.equals(2, a.foo(null, 20)); |
| 77 Expect.throws(() => a.foo(10, 20, 30)); | 77 Expect.throws(() => a.foo(10, 20, 30)); |
| 78 | 78 |
| 79 Expect.equals(0, b.foo()); | 79 Expect.equals(0, b.foo()); |
| 80 Expect.equals(1, b.foo(10)); | 80 Expect.equals(1, b.foo(10)); |
| 81 Expect.equals(2, b.foo(10, 20)); | 81 Expect.equals(2, b.foo(10, 20)); |
| 82 Expect.throws(() => b.foo(10, 20, 30)); | 82 Expect.throws(() => b.foo(10, 20, 30)); |
| 83 | 83 |
| 84 Expect.equals(1, b.foo(x: 10)); // 1 = x | 84 Expect.equals(1, b.foo(10)); |
| 85 Expect.equals(2, b.foo(y: 20)); // 2 = x, y | 85 Expect.equals(2, b.foo(null, 20)); |
| 86 Expect.throws(() => b.foo(10, 20, 30)); | 86 Expect.throws(() => b.foo(10, 20, 30)); |
| 87 } | 87 } |
| 88 | 88 |
| 89 main() { | 89 main() { |
| 90 setup(); | 90 setup(); |
| 91 testDynamicContext(); | 91 testDynamicContext(); |
| 92 testStaticContext(); | 92 testStaticContext(); |
| 93 } | 93 } |
| OLD | NEW |