OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 // Test for correct hidden native class when interface has same name. | |
6 | |
7 #library('main'); | |
8 #import('native_library_same_name_used_lib1.dart'); | |
9 | |
10 void setup() native """ | |
11 // This code is all inside 'setup' and so not accesible from the global scope. | |
12 function I(){} | |
13 I.prototype.read = function() { return this._x; }; | |
14 I.prototype.write = function(x) { this._x = x; }; | |
15 makeI = function(){return new I}; | |
16 """; | |
17 | |
18 // A pure Dart implementation of I. | |
19 | |
20 class ProxyI implements I { | |
21 ProxyI b; | |
22 ProxyI read() { return b; } | |
23 write(ProxyI x) { b = x; } | |
24 } | |
25 | |
26 main() { | |
27 setup(); | |
28 | |
29 var a1 = makeI(); | |
30 var a2 = makeI(); | |
31 var b1 = new ProxyI(); | |
32 var b2 = new ProxyI(); | |
33 var ob = new Object(); | |
34 | |
35 Expect.isFalse(ob is I, 'ob is I'); | |
36 Expect.isFalse(ob is ProxyI, 'ob is ProxyI'); | |
37 | |
38 Expect.isTrue(b1 is I, 'b1 is I'); | |
39 Expect.isTrue(b1 is ProxyI, 'b1 is ProxyI'); | |
40 | |
41 Expect.isTrue(a1 is I, 'a1 is I'); | |
42 Expect.isFalse(a1 is ProxyI, 'a1 is ProxyI'); | |
43 } | |
OLD | NEW |