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 function testTableSwitch2() {
2 var arr = [2, 2, 2, 2, 2, 5, 2, 2, 5, 5, 5, 5, 5, 5, 5, 5];
3 var s = '';
4 for (var i = 0; i < arr.length; i++) {
5 switch (arr[i]) {
6 case 0: case 1: case 3: case 4:
7 throw "FAIL";
8 case 2:
9 s += '2';
10 break;
11 case 5:
12 s += '5';
13 }
14 }
15 assertEq(s, arr.join(""));
16 }
18 testTableSwitch2();