repo.or.cz
/
swfdec.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
release 0.5.4
[swfdec.git]
/
test
/
trace
/
try-throw-in-finally.as
blob
b80ef4e9996e18f3d4a0c7e54a560632e308e8e9
1
// makeswf -v 7 -r 1 -o try-throw-in-finally-7.swf try-throw-in-finally.as
2
3
trace
(
"Test what exception is thrown out of finally"
);
4
5
try
{
6
try
{
7
throw
"try"
;
8
}
catch
(
exception
) {
9
throw
"catch"
;
10
}
finally
{
11
throw
"finally"
;
12
};
13
}
catch
(
exception
) {
14
trace
(
exception
);
15
};
16
17
loadMovie
(
"FSCommand:quit"
,
""
);