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 "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
6 | 6 |
7 // Test that native objects cannot accidentally or maliciously be mistaken for | 7 // Test that native objects cannot accidentally or maliciously be mistaken for |
8 // Dart objects. | 8 // Dart objects. |
9 | 9 |
10 // This test currently fails because we do not recognize the need for | 10 // This test currently fails because we do not recognize the need for |
11 // interceptors without native *classes*. | 11 // interceptors without native *classes*. |
12 | 12 |
13 class Thing { | 13 class Thing {} |
14 } | |
15 | 14 |
16 make1() native; | 15 make1() native ; |
17 make2() native; | 16 make2() native ; |
18 | 17 |
19 void setup() native r""" | 18 void setup() native r""" |
20 function A() {} | 19 function A() {} |
21 A.prototype.$isThing = true; | 20 A.prototype.$isThing = true; |
22 make1 = function(){return new A;}; | 21 make1 = function(){return new A;}; |
23 make2 = function(){return {$isThing: true}}; | 22 make2 = function(){return {$isThing: true}}; |
24 """; | 23 """; |
25 | 24 |
26 inscrutable(x) { | 25 inscrutable(x) { |
27 if (new DateTime.now().millisecondsSinceEpoch == 0) { | 26 if (new DateTime.now().millisecondsSinceEpoch == 0) { |
28 return x; | 27 return x; |
29 } else { | 28 } else { |
30 return 42; | 29 return 42; |
31 } | 30 } |
32 } | 31 } |
33 | 32 |
34 main() { | 33 main() { |
35 setup(); | 34 setup(); |
36 | 35 |
37 var a = new Thing(); | 36 var a = new Thing(); |
38 var b = make1(); | 37 var b = make1(); |
39 var c = make2(); | 38 var c = make2(); |
40 Expect.isTrue(inscrutable(a) is Thing); | 39 Expect.isTrue(inscrutable(a) is Thing); |
41 Expect.isFalse(inscrutable(b) is Thing); | 40 Expect.isFalse(inscrutable(b) is Thing); |
42 Expect.isFalse(inscrutable(c) is Thing); | 41 Expect.isFalse(inscrutable(c) is Thing); |
43 } | 42 } |
OLD | NEW |