~ubuntu-branches/ubuntu/jaunty/swfdec0.8/jaunty

« back to all changes in this revision

Viewing changes to test/trace/try-finally.as

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2008-10-10 19:15:24 UTC
  • Revision ID: package-import@ubuntu.com-20081010191524-5z85qiky1d4bvgfa
Tags: upstream-0.8.0
ImportĀ upstreamĀ versionĀ 0.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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", "");