Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: tests/compiler/dart2js_foreign/native_exceptions1_test.dart

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add deprecation comment for ExpectException and revert one test. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698