blob: 5efd434f54f5737e52c8e35323ae6943400f1a6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
import org.aspectj.testing.Tester;
public class TryCatchFinally {
public static void main(String[] args) {
Tester.checkEqual(m1(), "good");
Tester.checkEqual(m2(), "good");
Tester.checkEqual(m3(), "good");
try {
m1v();
} catch (RuntimeException re) {
Tester.event("main-caught");
}
Tester.checkAndClearEvents(new String[] {
"caught", "finally", "main-caught"} );
try {
m2v();
} catch (RuntimeException re) {
Tester.event("main-caught");
}
Tester.checkAndClearEvents(new String[] {
"caught", "finally", "main-caught"} );
m3v();
Tester.checkAndClearEvents(new String[] {
"caught", "finally"} );
}
public static String m1() {
try {
throw new RuntimeException("hi");
} catch (RuntimeException er) {
throw er;
} finally {
return "good";
}
}
public static String m2() {
try {
return m1() + "XXX";
} catch (RuntimeException er) {
throw er;
} finally {
return "good";
}
}
public static String m3() {
try {
throw new RuntimeException("hi");
} catch (RuntimeException er) {
return "bad-c";
} finally {
return "good";
}
}
public static void m1v() {
try {
throw new RuntimeException("hi");
} catch (RuntimeException er) {
Tester.event("caught");
throw er;
} finally {
Tester.event("finally");
}
}
public static void m2v() {
try {
throw new RuntimeException("hi");
} catch (RuntimeException er) {
Tester.event("caught");
throw er;
} finally {
Tester.event("finally");
}
}
public static void m3v() {
try {
throw new RuntimeException("hi");
} catch (RuntimeException er) {
Tester.event("caught");
return;
} finally {
Tester.event("finally");
}
}
}
|