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
remove "*&val" references
[swfdec.git]
/
test
/
trace
/
try-finally.as
blob
b50443b055b5b6b42661add50b4bdecc3334c63b
1
// makeswf -v 7 -r 1 -o try-finally-7.swf try-finally.as
2
3
try
{
4
try
{
5
trace
(
"Try"
);
6
}
finally
{
7
trace
(
"Finally"
);
8
};
9
try
{
10
throw
"Error"
;
11
}
finally
{
12
trace
(
"Finally"
);
13
};
14
}
catch
(
e
) {
15
trace
(
e
);
16
};
17
18
getURL
(
"FSCommand:quit"
,
""
);