OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // Test that hidden native exception classes can be marked as existing. | 5 // Test that hidden native exception classes can be marked as existing. |
6 // | 6 // |
7 // To infer which native hidden types exist, we need | 7 // To infer which native hidden types exist, we need |
8 // (1) return types of native methods and getters | 8 // (1) return types of native methods and getters |
9 // (2) argument types of callbacks | 9 // (2) argument types of callbacks |
10 // (3) exceptions thrown by the operation. | 10 // (3) exceptions thrown by the operation. |
11 // | 11 // |
12 // (1) and (2) can be achieved by having nicely typed native methods, but there | 12 // (1) and (2) can be achieved by having nicely typed native methods, but there |
13 // is no place in the Dart language to communicate (3). So we use the following | 13 // is no place in the Dart language to communicate (3). So we use the following |
14 // fake body technique. | 14 // fake body technique. |
15 | 15 |
| 16 import "package:expect/expect.dart"; |
16 import 'native_metadata.dart'; | 17 import 'native_metadata.dart'; |
17 | 18 |
18 // The exception type. | 19 // The exception type. |
19 @Native("*E") | 20 @Native("*E") |
20 class E { | 21 class E { |
21 @native E._used(); // Bogus native constructor, called only from fake body. | 22 @native E._used(); // Bogus native constructor, called only from fake body. |
22 | 23 |
23 final int code; | 24 final int code; |
24 } | 25 } |
25 | 26 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 threw = false; | 96 threw = false; |
96 try { | 97 try { |
97 var x = aa.op(51); | 98 var x = aa.op(51); |
98 } on E catch (e) { | 99 } on E catch (e) { |
99 threw = true; | 100 threw = true; |
100 Expect.equals(100, e.code); | 101 Expect.equals(100, e.code); |
101 Expect.isTrue(e is E); | 102 Expect.isTrue(e is E); |
102 } | 103 } |
103 Expect.isTrue(threw); | 104 Expect.isTrue(threw); |
104 } | 105 } |
OLD | NEW |