| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 |
| 11 makeA() native ; | 10 A makeA() native ; |
| 12 | 11 |
| 13 void setup() native """ | 12 void setup() native """ |
| 14 function A() {}; | 13 function A() {}; |
| 15 A.prototype.foo = function() { return 42; } | 14 A.prototype.foo = function() { return 99; } |
| 16 makeA = function() { return new A; } | 15 makeA = function() { return new A; } |
| 16 self.nativeConstructor(A); |
| 17 """; | 17 """; |
| 18 | 18 |
| 19 class B { | 19 class B { |
| 20 // We need to define a foo method so that Frog sees it. Because it's | 20 // We need to define a foo method so that dart2js sees it. Because the the |
| 21 // the only occurence of 'foo', Frog does not bother mangling the | 21 // only occurences of 'foo' is on B, a Dart class, no interceptor is used. It |
| 22 // call sites. It thinks all calls will either go to this method, or | 22 // thinks all calls will either go to this method, or throw a |
| 23 // throw a NoSuchMethodError. | 23 // NoSuchMethodError. It is possible that the native class will shadow a |
| 24 // method, but it will not shadow 'foo' because the name is either 'mangled' |
| 25 // with the arity, or minified. |
| 24 foo() { | 26 foo() { |
| 25 return 42; | 27 return 42; |
| 26 } | 28 } |
| 27 } | 29 } |
| 28 | 30 |
| 29 typedContext() { | 31 typedContext() { |
| 30 var things = [makeA(), new B()]; | 32 confuse(new B()).foo(); |
| 31 A a = things[0]; | 33 A a = makeA(); |
| 32 Expect.throws(() => a.foo(), (e) => e is NoSuchMethodError); | 34 Expect.throws(() => a.foo(), (e) => e is NoSuchMethodError); |
| 33 Expect.throws(() => a.foo, (e) => e is NoSuchMethodError); | 35 Expect.throws(() => a.foo, (e) => e is NoSuchMethodError); |
| 34 Expect.throws(() => a.foo = 4, (e) => e is NoSuchMethodError); | 36 Expect.throws(() => a.foo = 4, (e) => e is NoSuchMethodError); |
| 35 } | 37 } |
| 36 | 38 |
| 37 untypedContext() { | 39 untypedContext() { |
| 38 var things = [makeA(), new B()]; | 40 confuse(new B()).foo(); |
| 39 var a = things[0]; | 41 var a = confuse(makeA()); |
| 40 Expect.throws(() => a.foo(), (e) => e is NoSuchMethodError); | 42 Expect.throws(() => a.foo(), (e) => e is NoSuchMethodError); |
| 41 Expect.throws(() => a.foo, (e) => e is NoSuchMethodError); | 43 Expect.throws(() => a.foo, (e) => e is NoSuchMethodError); |
| 42 Expect.throws(() => a.foo = 4, (e) => e is NoSuchMethodError); | 44 Expect.throws(() => a.foo = 4, (e) => e is NoSuchMethodError); |
| 43 } | 45 } |
| 44 | 46 |
| 45 main() { | 47 main() { |
| 48 nativeTesting(); |
| 46 setup(); | 49 setup(); |
| 47 typedContext(); | 50 typedContext(); |
| 48 untypedContext(); | 51 untypedContext(); |
| 49 } | 52 } |
| OLD | NEW |