OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 "dart:_js_helper"; | 5 import 'native_testing.dart'; |
6 import "package:expect/expect.dart"; | |
7 | 6 |
8 @Native("A") | 7 @Native("A") |
9 class A {} | 8 class A {} |
10 | 9 |
| 10 int calls = 0; |
| 11 @Native("B") |
| 12 class B { |
| 13 bool operator==(other) { |
| 14 ++calls; |
| 15 return other is B; |
| 16 } |
| 17 int get hashCode => 1; |
| 18 } |
| 19 |
11 makeA() native ; | 20 makeA() native ; |
| 21 makeB() native ; |
12 | 22 |
13 void setup() native """ | 23 void setup() native """ |
14 function A() {} | 24 function A() {} |
| 25 function B() {} |
15 makeA = function(){return new A;}; | 26 makeA = function(){return new A;}; |
| 27 makeB = function(){return new B;}; |
| 28 |
| 29 self.nativeConstructor(B); |
16 """; | 30 """; |
17 | 31 |
18 main() { | 32 main() { |
| 33 nativeTesting(); |
19 setup(); | 34 setup(); |
20 var a = makeA(); | 35 var a = makeA(); |
21 Expect.isTrue(a == a); | 36 Expect.isTrue(a == a); |
22 Expect.isTrue(identical(a, a)); | 37 Expect.isTrue(identical(a, a)); |
23 | 38 |
24 Expect.isFalse(a == makeA()); | 39 Expect.isFalse(a == makeA()); |
25 Expect.isFalse(identical(a, makeA())); | 40 Expect.isFalse(identical(a, makeA())); |
| 41 |
| 42 var b = makeB(); |
| 43 Expect.isTrue(b == b); |
| 44 Expect.isTrue(identical(b, b)); |
| 45 |
| 46 Expect.isTrue(b == makeB()); |
| 47 Expect.isFalse(identical(b, makeB())); |
| 48 |
| 49 Expect.equals(2, calls); |
26 } | 50 } |
OLD | NEW |