| 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 // Test for correct is-checks on hidden native classes. | 5 // Test for correct is-checks on hidden native classes. |
| 6 | 6 |
| 7 interface I { | 7 interface I { |
| 8 I read(); | 8 I read(); |
| 9 write(I x); | 9 write(I x); |
| 10 } | 10 } |
| 11 | 11 |
| 12 // Native implementation. | 12 // Native implementation. |
| 13 | 13 |
| 14 class A implements I native "*A" { | 14 class A implements I native "*A" { |
| 15 // The native class accepts only other native instances. | 15 // The native class accepts only other native instances. |
| 16 A read() native; | 16 A read() native; |
| 17 write(A x) native; | 17 write(A x) native; |
| 18 } | 18 } |
| 19 | 19 |
| 20 makeA() native; | 20 makeA() native; |
| 21 | 21 |
| 22 void setup() native """ | 22 void setup() native """ |
| 23 // This code is all inside 'setup' and so not accesible from the global scope. | 23 // This code is all inside 'setup' and so not accesible from the global scope. |
| 24 function A(){} | 24 function A(){} |
| 25 A.prototype.read = function() { return this._x; }; | 25 A.prototype.read = function() { return this._x; }; |
| 26 A.prototype.write = function(x) { this._x = x; }; | 26 A.prototype.write = function(x) { this._x = x; }; |
| 27 makeA = function(){return new A}; |
| 27 """; | 28 """; |
| 28 | 29 |
| 29 // Dart implementation must coexist with native implementation. | 30 // Dart implementation must coexist with native implementation. |
| 30 | 31 |
| 31 class B implements I { | 32 class B implements I { |
| 32 B b; | 33 B b; |
| 33 B read() { return b; } | 34 B read() { return b; } |
| 34 write(B x) { b = x; } | 35 write(B x) { b = x; } |
| 35 } | 36 } |
| 36 | 37 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 var ob = new Object(); | 83 var ob = new Object(); |
| 83 Expect.isTrue(ob is !T); | 84 Expect.isTrue(ob is !T); |
| 84 Expect.isTrue(x is T); | 85 Expect.isTrue(x is T); |
| 85 Expect.isTrue(y is T); | 86 Expect.isTrue(y is T); |
| 86 | 87 |
| 87 // In checked mode, there is a parameterized type assertion in assignment. | 88 // In checked mode, there is a parameterized type assertion in assignment. |
| 88 _x = x; | 89 _x = x; |
| 89 _y = y; | 90 _y = y; |
| 90 } | 91 } |
| 91 } | 92 } |
| OLD | NEW |