| 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 'native_testing.dart'; | 5 import "dart:_js_helper"; |
| 6 import "package:expect/expect.dart"; |
| 6 | 7 |
| 7 @Native("A") | 8 @Native("A") |
| 8 class A {} | 9 class A {} |
| 9 | 10 |
| 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 | |
| 20 makeA() native ; | 11 makeA() native ; |
| 21 makeB() native ; | |
| 22 | 12 |
| 23 void setup() native """ | 13 void setup() native """ |
| 24 function A() {} | 14 function A() {} |
| 25 function B() {} | |
| 26 makeA = function(){return new A;}; | 15 makeA = function(){return new A;}; |
| 27 makeB = function(){return new B;}; | |
| 28 | |
| 29 self.nativeConstructor(B); | |
| 30 """; | 16 """; |
| 31 | 17 |
| 32 main() { | 18 main() { |
| 33 nativeTesting(); | |
| 34 setup(); | 19 setup(); |
| 35 var a = makeA(); | 20 var a = makeA(); |
| 36 Expect.isTrue(a == a); | 21 Expect.isTrue(a == a); |
| 37 Expect.isTrue(identical(a, a)); | 22 Expect.isTrue(identical(a, a)); |
| 38 | 23 |
| 39 Expect.isFalse(a == makeA()); | 24 Expect.isFalse(a == makeA()); |
| 40 Expect.isFalse(identical(a, makeA())); | 25 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); | |
| 50 } | 26 } |
| OLD | NEW |