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:mirrors" show reflect; | 5 import "dart:mirrors" show reflect; |
| 6 import "dart:_js_helper"; |
6 import "package:expect/expect.dart"; | 7 import "package:expect/expect.dart"; |
7 | 8 |
8 class GetName { | 9 class GetName { |
9 foo(x, y) => "foo"; | 10 foo(x, y) => "foo"; |
10 baz(x, y, z) => "baz"; | 11 baz(x, y, z) => "baz"; |
11 } | 12 } |
12 | 13 |
13 String getName(im) => reflect(new GetName()).delegate(im);; | 14 String getName(im) => reflect(new GetName()).delegate(im);; |
14 | 15 |
15 class A native "A" { | 16 @Native("A") |
| 17 class A { |
16 bar() => 42; | 18 bar() => 42; |
17 noSuchMethod(x) => "native(${getName(x)}:${x.positionalArguments})"; | 19 noSuchMethod(x) => "native(${getName(x)}:${x.positionalArguments})"; |
18 } | 20 } |
19 | 21 |
20 class B native "B" { | 22 @Native("B") |
| 23 class B { |
21 baz() => 42; | 24 baz() => 42; |
22 } | 25 } |
23 | 26 |
24 makeA() native; | 27 makeA() native; |
25 | 28 |
26 setup() native """ | 29 setup() native """ |
27 function A() {} | 30 function A() {} |
28 makeA = function() { return new A; } | 31 makeA = function() { return new A; } |
29 """; | 32 """; |
30 | 33 |
31 main() { | 34 main() { |
32 setup(); | 35 setup(); |
33 var a = makeA(); | 36 var a = makeA(); |
34 a.bar(); | 37 a.bar(); |
35 Expect.equals("native(foo:[1, 2])", a.foo(1, 2)); | 38 Expect.equals("native(foo:[1, 2])", a.foo(1, 2)); |
36 Expect.equals("native(baz:[3, 4, 5])", a.baz(3, 4, 5)); | 39 Expect.equals("native(baz:[3, 4, 5])", a.baz(3, 4, 5)); |
37 } | 40 } |
OLD | NEW |