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 import "package:expect/expect.dart"; |
| 6 |
5 // Test to see if resolving a hidden native class's method interferes with | 7 // Test to see if resolving a hidden native class's method interferes with |
6 // subsequent resolving the subclass's method. This might happen if the | 8 // subsequent resolving the subclass's method. This might happen if the |
7 // superclass caches the method in the prototype, so shadowing the dispatcher | 9 // superclass caches the method in the prototype, so shadowing the dispatcher |
8 // stored on Object.prototype. | 10 // stored on Object.prototype. |
9 | 11 |
10 class A native "*A" { | 12 class A native "*A" { |
11 foo([a=100]) native; | 13 foo([a=100]) native; |
12 } | 14 } |
13 | 15 |
14 class B extends A native "*B" { | 16 class B extends A native "*B" { |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 Expect.equals('C.foo(300)', d.foo()); | 71 Expect.equals('C.foo(300)', d.foo()); |
70 // If the above line fails with C.foo(100) then the dispatch to fill in the | 72 // If the above line fails with C.foo(100) then the dispatch to fill in the |
71 // default got the wrong one, followed by a second dispatch that resolved to | 73 // default got the wrong one, followed by a second dispatch that resolved to |
72 // the correct native method. | 74 // the correct native method. |
73 | 75 |
74 Expect.equals('A.foo(1)', a.foo(1)); | 76 Expect.equals('A.foo(1)', a.foo(1)); |
75 Expect.equals('A.foo(2)', b.foo(2)); | 77 Expect.equals('A.foo(2)', b.foo(2)); |
76 Expect.equals('C.foo(3)', c.foo(3)); | 78 Expect.equals('C.foo(3)', c.foo(3)); |
77 Expect.equals('C.foo(4)', d.foo(4)); | 79 Expect.equals('C.foo(4)', d.foo(4)); |
78 } | 80 } |
OLD | NEW |