| 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 @native("*A") |
| 9 int foo([x, y]) native; | 9 class A { |
| 10 @native int foo([x, y]); |
| 10 } | 11 } |
| 11 | 12 |
| 12 class B extends A native "*B" { | 13 @native("*B") |
| 13 int foo([x, y]) native; | 14 class B extends A { |
| 15 @native int foo([x, y]); |
| 14 } | 16 } |
| 15 | 17 |
| 16 A makeA() native { return new A(); } | 18 @native A makeA() { return new A(); } |
| 17 B makeB() native { return new B(); } | 19 @native B makeB() { return new B(); } |
| 18 | 20 |
| 19 void setup() native """ | 21 @native(""" |
| 20 function inherits(child, parent) { | 22 function inherits(child, parent) { |
| 21 if (child.prototype.__proto__) { | 23 if (child.prototype.__proto__) { |
| 22 child.prototype.__proto__ = parent.prototype; | 24 child.prototype.__proto__ = parent.prototype; |
| 23 } else { | 25 } else { |
| 24 function tmp() {}; | 26 function tmp() {}; |
| 25 tmp.prototype = parent.prototype; | 27 tmp.prototype = parent.prototype; |
| 26 child.prototype = new tmp(); | 28 child.prototype = new tmp(); |
| 27 child.prototype.constructor = child; | 29 child.prototype.constructor = child; |
| 28 } | 30 } |
| 29 } | 31 } |
| 30 function A() {} | 32 function A() {} |
| 31 A.prototype.foo = function () { return arguments.length; }; | 33 A.prototype.foo = function () { return arguments.length; }; |
| 32 | 34 |
| 33 function B() {} | 35 function B() {} |
| 34 B.prototype.foo = function () { return arguments.length; }; | 36 B.prototype.foo = function () { return arguments.length; }; |
| 35 inherits(B, A); | 37 inherits(B, A); |
| 36 | 38 |
| 37 makeA = function(){return new A;}; | 39 makeA = function(){return new A;}; |
| 38 makeB = function(){return new B;}; | 40 makeB = function(){return new B;}; |
| 39 """; | 41 """) |
| 42 void setup(); |
| 40 | 43 |
| 41 | 44 |
| 42 testDynamicContext() { | 45 testDynamicContext() { |
| 43 var things = [makeA(), makeB()]; | 46 var things = [makeA(), makeB()]; |
| 44 var a = things[0]; | 47 var a = things[0]; |
| 45 var b = things[1]; | 48 var b = things[1]; |
| 46 | 49 |
| 47 Expect.equals(0, a.foo()); | 50 Expect.equals(0, a.foo()); |
| 48 Expect.equals(1, a.foo(10)); | 51 Expect.equals(1, a.foo(10)); |
| 49 Expect.equals(2, a.foo(10, 20)); | 52 Expect.equals(2, a.foo(10, 20)); |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 Expect.equals(1, b.foo(x: 10)); // 1 = x | 87 Expect.equals(1, b.foo(x: 10)); // 1 = x |
| 85 Expect.equals(2, b.foo(y: 20)); // 2 = x, y | 88 Expect.equals(2, b.foo(y: 20)); // 2 = x, y |
| 86 Expect.throws(() => b.foo(10, 20, 30)); | 89 Expect.throws(() => b.foo(10, 20, 30)); |
| 87 } | 90 } |
| 88 | 91 |
| 89 main() { | 92 main() { |
| 90 setup(); | 93 setup(); |
| 91 testDynamicContext(); | 94 testDynamicContext(); |
| 92 testStaticContext(); | 95 testStaticContext(); |
| 93 } | 96 } |
| OLD | NEW |