| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 import "package:expect/expect.dart"; |
| 6 |
| 7 // Test that native objects cannot accidentally or maliciously be mistaken for |
| 8 // Dart objects. |
| 9 |
| 10 class Thing { |
| 11 } |
| 12 |
| 13 make1() native; |
| 14 make2() native; |
| 15 |
| 16 void setup() native r""" |
| 17 function A() {} |
| 18 A.prototype.$isThing = true; |
| 19 make1 = function(){return new A;}; |
| 20 make2 = function(){return {$isThing: true}}; |
| 21 """; |
| 22 |
| 23 var inscrutable; |
| 24 main() { |
| 25 setup(); |
| 26 inscrutable = (x) => x; |
| 27 |
| 28 var a = new Thing(); |
| 29 var b = make1(); |
| 30 var c = make2(); |
| 31 Expect.isTrue(inscrutable(a) is Thing); |
| 32 Expect.isFalse(inscrutable(b) is Thing); |
| 33 Expect.isFalse(inscrutable(c) is Thing); |
| 34 } |
| OLD | NEW |