OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 "native_testing.dart"; |
6 | 6 |
7 makeCC() native ; | 7 makeCC() native; |
8 | 8 |
9 void setup() native """ | 9 void setup() native """ |
10 function CC() {} | 10 function CC() {} |
11 makeCC = function() { return new CC; } | 11 makeCC = function() { return new CC; } |
12 self.nativeConstructor(CC); | 12 self.nativeConstructor(CC); |
13 """; | 13 """; |
14 | 14 |
15 @Native("CC") | 15 @Native("CC") |
16 class ClickCounter { | 16 class ClickCounter { |
17 var status; | 17 var status; |
(...skipping 15 matching lines...) Expand all Loading... |
33 | 33 |
34 main() { | 34 main() { |
35 nativeTesting(); | 35 nativeTesting(); |
36 setup(); | 36 setup(); |
37 var c = makeCC(); | 37 var c = makeCC(); |
38 c.init(); | 38 c.init(); |
39 // `foo` contains a closure. Make sure that invoking foo through an | 39 // `foo` contains a closure. Make sure that invoking foo through an |
40 // interceptor works. | 40 // interceptor works. |
41 Expect.equals("### !!! 499 !!! ###", c.foo(499)); | 41 Expect.equals("### !!! 499 !!! ###", c.foo(499)); |
42 } | 42 } |
OLD | NEW |