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