Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 test();
2 function test() {
3 var catch1, catch2, catch3, finally1, finally2, finally3;
4 function gen() {
5 yield 1;
6 try {
7 try {
8 try {
9 yield 1;
10 } finally {
11 test();
12 }
13 } catch (e) {
14 finally2 = true;
15 }
16 } catch (e) { }
17 }
18 iter = gen();
19 iter.next();
20 iter.next();
21 iter.close();
22 gc();
23 }