| 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 | |
| 8 class MyException1 { | 6 class MyException1 { |
| 9 const MyException1([String message = "1"]) : message_ = message; | 7 const MyException1([String message = "1"]) : message_ = message; |
| 10 final String message_; | 8 final String message_; |
| 11 } | 9 } |
| 12 | 10 |
| 13 class MyException2 { | 11 class MyException2 { |
| 14 const MyException2([String message = "2"]) : message_ = message; | 12 const MyException2([String message = "2"]) : message_ = message; |
| 15 final String message_; | 13 final String message_; |
| 16 } | 14 } |
| 17 | 15 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 68 |
| 71 class Throw4Test { | 69 class Throw4Test { |
| 72 static testMain() { | 70 static testMain() { |
| 73 Expect.equals(1900, new Helper().f1()); | 71 Expect.equals(1900, new Helper().f1()); |
| 74 } | 72 } |
| 75 } | 73 } |
| 76 | 74 |
| 77 main() { | 75 main() { |
| 78 Throw4Test.testMain(); | 76 Throw4Test.testMain(); |
| 79 } | 77 } |
| OLD | NEW |