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 // Dart test program for testing throw statement | 4 // Dart test program for testing throw statement |
5 | 5 |
| 6 import "package:expect/expect.dart"; |
| 7 |
6 class MyException1 { | 8 class MyException1 { |
7 const MyException1([String message = "1"]) : message_ = message; | 9 const MyException1([String message = "1"]) : message_ = message; |
8 final String message_; | 10 final String message_; |
9 } | 11 } |
10 | 12 |
11 class Helper { | 13 class Helper { |
12 Helper() : i = 0 { } | 14 Helper() : i = 0 { } |
13 | 15 |
14 int f1() { | 16 int f1() { |
15 int j = 0; | 17 int j = 0; |
(...skipping 30 matching lines...) Expand all Loading... |
46 | 48 |
47 class Throw6Test { | 49 class Throw6Test { |
48 static testMain() { | 50 static testMain() { |
49 Expect.equals(1900, new Helper().f1()); | 51 Expect.equals(1900, new Helper().f1()); |
50 } | 52 } |
51 } | 53 } |
52 | 54 |
53 main() { | 55 main() { |
54 Throw6Test.testMain(); | 56 Throw6Test.testMain(); |
55 } | 57 } |
OLD | NEW |