OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 // Dart test program for testing throw statement | |
5 | |
6 class MyException1 { | |
7 const MyException1([String message = "1"]) : message_ = message; | |
8 final String message_; | |
9 } | |
10 | |
11 class MyException2 { | |
12 const MyException2([String message = "2"]) : message_ = message; | |
13 final String message_; | |
14 } | |
15 | |
16 class MyException3 { | |
17 const MyException3([String message = "3"]) : message_ = message; | |
18 final String message_; | |
19 } | |
20 | |
21 class Helper { | |
22 Helper() : i = 0 { } | |
23 | |
24 int f1() { | |
25 int j = 0; | |
26 try { | |
27 j = func(); | |
28 } catch (MyException3 exception) { | |
29 i = i + 300; | |
30 print(exception.message_); | |
31 } catch (MyException2 exception) { | |
32 i = i + 200; | |
33 print(exception.message_); | |
34 } catch (MyException1 exception) { | |
35 i = i + 100; | |
36 print(exception.message_); | |
37 } finally { | |
38 i = i + 1000; | |
39 } | |
40 return i; | |
41 } | |
42 | |
43 // No catch in the same function for the type of exception being thrown | |
44 // in the try block here. We expect the handler if checks to fall thru, | |
45 // the finally block to run and an implicit rethrow to happen. | |
46 int func() { | |
47 i = 0; | |
48 try { | |
49 while (i < 10) { | |
50 i++; | |
51 } | |
52 if (i > 0) { | |
53 throw new MyException1("Test for MyException1 being thrown"); | |
54 } | |
55 } catch (MyException3 exception) { | |
56 i = 300; | |
57 print(exception.message_); | |
58 } catch (MyException2 exception) { | |
59 i = 200; | |
60 print(exception.message_); | |
61 } finally { | |
62 i = 800; | |
63 } | |
64 return i; | |
65 } | |
66 int i; | |
67 } | |
68 | |
69 class Throw4Test { | |
70 static testMain() { | |
71 Expect.equals(1900, new Helper().f1()); | |
72 } | |
73 } | |
74 | |
75 main() { | |
76 Throw4Test.testMain(); | |
77 } | |
OLD | NEW |