1 /* same as finally.as, only for larger finally blocks which require a
5 import flash.display.MovieClip;
7 public class Main extends flash.display.MovieClip {
9 function test_return():int {
25 function test_break() {
43 function test_fallthrough() {
57 function test_exception() {
80 function test_exception2() {
93 new Array(1,2,3,4,5,6);
103 if(i==0) throw new Error();
104 if(i==7) throw new Error();
105 if(i==11) throw new Error();
106 if(i==15) throw new Error();
107 if(i==17) throw new Error();
109 new Array(1,2,3,4,5,6);
119 new Array(1,2,3,4,5,6);
125 function test_exception3() {
133 function test_empty() {
140 function test_mixed():int {
144 if(i==2) throw new Error();