michael@0: ///////////////////////////////////////// michael@0: // This is a generated file! michael@0: // See jit-tests/etc/generate-lookupswitch-tests.js for the code michael@0: // that generated this code! michael@0: ///////////////////////////////////////// michael@0: michael@0: ///////////////////////////////////////// michael@0: // PRELUDE // michael@0: ///////////////////////////////////////// michael@0: michael@0: // Avoid eager compilation of the global-scope. michael@0: try{} catch (x) {}; michael@0: michael@0: function ASSERT(cond, msg) { michael@0: assertEq(cond, true, msg); michael@0: } michael@0: function IsNull(x) { michael@0: return typeof x == "object" && x == null; michael@0: } michael@0: function IsNum(x) { michael@0: return typeof x == "number"; michael@0: } michael@0: function ArraysEqual(arr1, arr2) { michael@0: ASSERT(arr1.length == arr2.length, "Lengths not equal"); michael@0: for (var i = 0; i < arr1.length; i++) { michael@0: ASSERT(typeof arr1[i] == typeof arr2[i], "Types not equal for position " + i); michael@0: ASSERT(arr1[i] == arr2[i], "Values not equal for position " + i); michael@0: } michael@0: } michael@0: function InterpretSwitch(spec, input, outputArray) { michael@0: var foundMatch = undefined, foundDefault = undefined; michael@0: for (var i = 0; i < spec.length; i++) { michael@0: var caseSpec = spec[i], match = caseSpec.match; michael@0: if (IsNull(match)) { michael@0: foundDefault = i; michael@0: continue; michael@0: } else if (match === input) { michael@0: foundMatch = i; michael@0: break; michael@0: } michael@0: } michael@0: var matchI = IsNum(foundMatch) ? foundMatch : foundDefault; michael@0: if (IsNum(matchI)) { michael@0: for (var i = matchI; i < spec.length; i++) { michael@0: var caseSpec = spec[i], match = caseSpec.match, body = caseSpec.body, fallthrough = caseSpec.fallthrough; michael@0: if (!IsNull(body)) { michael@0: outputArray.push(body); michael@0: } michael@0: if (!fallthrough) { michael@0: break; michael@0: } michael@0: } michael@0: } michael@0: } michael@0: function RunTest(test) { michael@0: var inputs = test.INPUTS; michael@0: inputs.push("UNMATCHED_CASE"); michael@0: var spec = test.SPEC; michael@0: var results1 = []; michael@0: for (var i = 0; i < 80; i++) { michael@0: for (var j = 0; j < inputs.length; j++) { michael@0: test(inputs[j], results1); michael@0: } michael@0: } michael@0: var results2 = []; michael@0: for (var i = 0; i < 80; i++) { michael@0: for (var j = 0; j < inputs.length; j++) { michael@0: InterpretSwitch(spec, inputs[j], results2); michael@0: } michael@0: } michael@0: ArraysEqual(results1, results2); michael@0: } michael@0: michael@0: ///////////////////////////////////////// michael@0: // TEST CASES // michael@0: ///////////////////////////////////////// michael@0: michael@0: var TESTS = []; michael@0: function test_1(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: arr.push(777087170); michael@0: break; michael@0: case 'bar': michael@0: arr.push(641037838); michael@0: break; michael@0: case 'zing': michael@0: arr.push(1652156613); michael@0: break; michael@0: } michael@0: } michael@0: test_1.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_1.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":777087170,"fallthrough":false},{"match":"bar","body":641037838,"fallthrough":false},{"match":"zing","body":1652156613,"fallthrough":false}]; michael@0: TESTS.push(test_1); michael@0: michael@0: function test_2(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(777087170); michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: arr.push(641037838); michael@0: break; michael@0: case 'zing': michael@0: arr.push(1652156613); michael@0: break; michael@0: } michael@0: } michael@0: test_2.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_2.SPEC = [{"match":"foo","body":777087170,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":641037838,"fallthrough":false},{"match":"zing","body":1652156613,"fallthrough":false}]; michael@0: TESTS.push(test_2); michael@0: michael@0: function test_3(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(777087170); michael@0: break; michael@0: case 'bar': michael@0: arr.push(641037838); michael@0: break; michael@0: case 'zing': michael@0: arr.push(1652156613); michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_3.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_3.SPEC = [{"match":"foo","body":777087170,"fallthrough":false},{"match":"bar","body":641037838,"fallthrough":false},{"match":"zing","body":1652156613,"fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_3); michael@0: michael@0: function test_4(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(633415567); michael@0: case 'foo': michael@0: arr.push(777087170); michael@0: break; michael@0: case 'bar': michael@0: arr.push(641037838); michael@0: break; michael@0: case 'zing': michael@0: arr.push(1652156613); michael@0: break; michael@0: } michael@0: } michael@0: test_4.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_4.SPEC = [{"match":null,"body":633415567,"fallthrough":true},{"match":"foo","body":777087170,"fallthrough":false},{"match":"bar","body":641037838,"fallthrough":false},{"match":"zing","body":1652156613,"fallthrough":false}]; michael@0: TESTS.push(test_4); michael@0: michael@0: function test_5(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(777087170); michael@0: break; michael@0: default: michael@0: arr.push(633415567); michael@0: case 'bar': michael@0: arr.push(641037838); michael@0: break; michael@0: case 'zing': michael@0: arr.push(1652156613); michael@0: break; michael@0: } michael@0: } michael@0: test_5.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_5.SPEC = [{"match":"foo","body":777087170,"fallthrough":false},{"match":null,"body":633415567,"fallthrough":true},{"match":"bar","body":641037838,"fallthrough":false},{"match":"zing","body":1652156613,"fallthrough":false}]; michael@0: TESTS.push(test_5); michael@0: michael@0: function test_6(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(777087170); michael@0: break; michael@0: case 'bar': michael@0: arr.push(641037838); michael@0: break; michael@0: case 'zing': michael@0: arr.push(1652156613); michael@0: break; michael@0: default: michael@0: arr.push(633415567); michael@0: } michael@0: } michael@0: test_6.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_6.SPEC = [{"match":"foo","body":777087170,"fallthrough":false},{"match":"bar","body":641037838,"fallthrough":false},{"match":"zing","body":1652156613,"fallthrough":false},{"match":null,"body":633415567,"fallthrough":true}]; michael@0: TESTS.push(test_6); michael@0: michael@0: function test_7(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('5zO^Qj'); michael@0: break; michael@0: case 'foo': michael@0: arr.push(777087170); michael@0: break; michael@0: case 'bar': michael@0: arr.push(641037838); michael@0: break; michael@0: case 'zing': michael@0: arr.push(1652156613); michael@0: break; michael@0: } michael@0: } michael@0: test_7.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_7.SPEC = [{"match":null,"body":"5zO^Qj","fallthrough":false},{"match":"foo","body":777087170,"fallthrough":false},{"match":"bar","body":641037838,"fallthrough":false},{"match":"zing","body":1652156613,"fallthrough":false}]; michael@0: TESTS.push(test_7); michael@0: michael@0: function test_8(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(777087170); michael@0: break; michael@0: default: michael@0: arr.push('5zO^Qj'); michael@0: break; michael@0: case 'bar': michael@0: arr.push(641037838); michael@0: break; michael@0: case 'zing': michael@0: arr.push(1652156613); michael@0: break; michael@0: } michael@0: } michael@0: test_8.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_8.SPEC = [{"match":"foo","body":777087170,"fallthrough":false},{"match":null,"body":"5zO^Qj","fallthrough":false},{"match":"bar","body":641037838,"fallthrough":false},{"match":"zing","body":1652156613,"fallthrough":false}]; michael@0: TESTS.push(test_8); michael@0: michael@0: function test_9(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(777087170); michael@0: break; michael@0: case 'bar': michael@0: arr.push(641037838); michael@0: break; michael@0: case 'zing': michael@0: arr.push(1652156613); michael@0: break; michael@0: default: michael@0: arr.push('5zO^Qj'); michael@0: break; michael@0: } michael@0: } michael@0: test_9.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_9.SPEC = [{"match":"foo","body":777087170,"fallthrough":false},{"match":"bar","body":641037838,"fallthrough":false},{"match":"zing","body":1652156613,"fallthrough":false},{"match":null,"body":"5zO^Qj","fallthrough":false}]; michael@0: TESTS.push(test_9); michael@0: michael@0: function test_10(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push('c'); michael@0: break; michael@0: case 'zing': michael@0: arr.push(2008006064); michael@0: break; michael@0: } michael@0: } michael@0: test_10.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_10.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":"c","fallthrough":false},{"match":"zing","body":2008006064,"fallthrough":false}]; michael@0: TESTS.push(test_10); michael@0: michael@0: function test_11(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: arr.push('c'); michael@0: break; michael@0: case 'zing': michael@0: arr.push(2008006064); michael@0: break; michael@0: } michael@0: } michael@0: test_11.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_11.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":"c","fallthrough":false},{"match":"zing","body":2008006064,"fallthrough":false}]; michael@0: TESTS.push(test_11); michael@0: michael@0: function test_12(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push('c'); michael@0: break; michael@0: case 'zing': michael@0: arr.push(2008006064); michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_12.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_12.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":"c","fallthrough":false},{"match":"zing","body":2008006064,"fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_12); michael@0: michael@0: function test_13(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('M'); michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push('c'); michael@0: break; michael@0: case 'zing': michael@0: arr.push(2008006064); michael@0: break; michael@0: } michael@0: } michael@0: test_13.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_13.SPEC = [{"match":null,"body":"M","fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":"c","fallthrough":false},{"match":"zing","body":2008006064,"fallthrough":false}]; michael@0: TESTS.push(test_13); michael@0: michael@0: function test_14(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push('M'); michael@0: case 'bar': michael@0: arr.push('c'); michael@0: break; michael@0: case 'zing': michael@0: arr.push(2008006064); michael@0: break; michael@0: } michael@0: } michael@0: test_14.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_14.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":"M","fallthrough":true},{"match":"bar","body":"c","fallthrough":false},{"match":"zing","body":2008006064,"fallthrough":false}]; michael@0: TESTS.push(test_14); michael@0: michael@0: function test_15(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push('c'); michael@0: break; michael@0: case 'zing': michael@0: arr.push(2008006064); michael@0: break; michael@0: default: michael@0: arr.push('M'); michael@0: } michael@0: } michael@0: test_15.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_15.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":"c","fallthrough":false},{"match":"zing","body":2008006064,"fallthrough":false},{"match":null,"body":"M","fallthrough":true}]; michael@0: TESTS.push(test_15); michael@0: michael@0: function test_16(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(1424069880); michael@0: break; michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push('c'); michael@0: break; michael@0: case 'zing': michael@0: arr.push(2008006064); michael@0: break; michael@0: } michael@0: } michael@0: test_16.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_16.SPEC = [{"match":null,"body":1424069880,"fallthrough":false},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":"c","fallthrough":false},{"match":"zing","body":2008006064,"fallthrough":false}]; michael@0: TESTS.push(test_16); michael@0: michael@0: function test_17(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push(1424069880); michael@0: break; michael@0: case 'bar': michael@0: arr.push('c'); michael@0: break; michael@0: case 'zing': michael@0: arr.push(2008006064); michael@0: break; michael@0: } michael@0: } michael@0: test_17.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_17.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":1424069880,"fallthrough":false},{"match":"bar","body":"c","fallthrough":false},{"match":"zing","body":2008006064,"fallthrough":false}]; michael@0: TESTS.push(test_17); michael@0: michael@0: function test_18(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push('c'); michael@0: break; michael@0: case 'zing': michael@0: arr.push(2008006064); michael@0: break; michael@0: default: michael@0: arr.push(1424069880); michael@0: break; michael@0: } michael@0: } michael@0: test_18.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_18.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":"c","fallthrough":false},{"match":"zing","body":2008006064,"fallthrough":false},{"match":null,"body":1424069880,"fallthrough":false}]; michael@0: TESTS.push(test_18); michael@0: michael@0: function test_19(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push(1915689729); michael@0: break; michael@0: case 'zing': michael@0: arr.push(973913896); michael@0: break; michael@0: } michael@0: } michael@0: test_19.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_19.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":1915689729,"fallthrough":false},{"match":"zing","body":973913896,"fallthrough":false}]; michael@0: TESTS.push(test_19); michael@0: michael@0: function test_20(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: case 'bar': michael@0: arr.push(1915689729); michael@0: break; michael@0: case 'zing': michael@0: arr.push(973913896); michael@0: break; michael@0: } michael@0: } michael@0: test_20.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_20.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":1915689729,"fallthrough":false},{"match":"zing","body":973913896,"fallthrough":false}]; michael@0: TESTS.push(test_20); michael@0: michael@0: function test_21(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push(1915689729); michael@0: break; michael@0: case 'zing': michael@0: arr.push(973913896); michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_21.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_21.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":1915689729,"fallthrough":false},{"match":"zing","body":973913896,"fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_21); michael@0: michael@0: function test_22(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(104770589); michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push(1915689729); michael@0: break; michael@0: case 'zing': michael@0: arr.push(973913896); michael@0: break; michael@0: } michael@0: } michael@0: test_22.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_22.SPEC = [{"match":null,"body":104770589,"fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":1915689729,"fallthrough":false},{"match":"zing","body":973913896,"fallthrough":false}]; michael@0: TESTS.push(test_22); michael@0: michael@0: function test_23(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push(104770589); michael@0: case 'bar': michael@0: arr.push(1915689729); michael@0: break; michael@0: case 'zing': michael@0: arr.push(973913896); michael@0: break; michael@0: } michael@0: } michael@0: test_23.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_23.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":104770589,"fallthrough":true},{"match":"bar","body":1915689729,"fallthrough":false},{"match":"zing","body":973913896,"fallthrough":false}]; michael@0: TESTS.push(test_23); michael@0: michael@0: function test_24(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push(1915689729); michael@0: break; michael@0: case 'zing': michael@0: arr.push(973913896); michael@0: break; michael@0: default: michael@0: arr.push(104770589); michael@0: } michael@0: } michael@0: test_24.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_24.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":1915689729,"fallthrough":false},{"match":"zing","body":973913896,"fallthrough":false},{"match":null,"body":104770589,"fallthrough":true}]; michael@0: TESTS.push(test_24); michael@0: michael@0: function test_25(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(304532507); michael@0: break; michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push(1915689729); michael@0: break; michael@0: case 'zing': michael@0: arr.push(973913896); michael@0: break; michael@0: } michael@0: } michael@0: test_25.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_25.SPEC = [{"match":null,"body":304532507,"fallthrough":false},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":1915689729,"fallthrough":false},{"match":"zing","body":973913896,"fallthrough":false}]; michael@0: TESTS.push(test_25); michael@0: michael@0: function test_26(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push(304532507); michael@0: break; michael@0: case 'bar': michael@0: arr.push(1915689729); michael@0: break; michael@0: case 'zing': michael@0: arr.push(973913896); michael@0: break; michael@0: } michael@0: } michael@0: test_26.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_26.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":304532507,"fallthrough":false},{"match":"bar","body":1915689729,"fallthrough":false},{"match":"zing","body":973913896,"fallthrough":false}]; michael@0: TESTS.push(test_26); michael@0: michael@0: function test_27(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push(1915689729); michael@0: break; michael@0: case 'zing': michael@0: arr.push(973913896); michael@0: break; michael@0: default: michael@0: arr.push(304532507); michael@0: break; michael@0: } michael@0: } michael@0: test_27.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_27.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":1915689729,"fallthrough":false},{"match":"zing","body":973913896,"fallthrough":false},{"match":null,"body":304532507,"fallthrough":false}]; michael@0: TESTS.push(test_27); michael@0: michael@0: function test_28(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: arr.push(2116660419); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('FvxWZ'); michael@0: break; michael@0: } michael@0: } michael@0: test_28.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_28.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":2116660419,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"FvxWZ","fallthrough":false}]; michael@0: TESTS.push(test_28); michael@0: michael@0: function test_29(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(2116660419); michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('FvxWZ'); michael@0: break; michael@0: } michael@0: } michael@0: test_29.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_29.SPEC = [{"match":"foo","body":2116660419,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"FvxWZ","fallthrough":false}]; michael@0: TESTS.push(test_29); michael@0: michael@0: function test_30(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(2116660419); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('FvxWZ'); michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_30.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_30.SPEC = [{"match":"foo","body":2116660419,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"FvxWZ","fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_30); michael@0: michael@0: function test_31(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(121730727); michael@0: case 'foo': michael@0: arr.push(2116660419); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('FvxWZ'); michael@0: break; michael@0: } michael@0: } michael@0: test_31.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_31.SPEC = [{"match":null,"body":121730727,"fallthrough":true},{"match":"foo","body":2116660419,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"FvxWZ","fallthrough":false}]; michael@0: TESTS.push(test_31); michael@0: michael@0: function test_32(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(2116660419); michael@0: break; michael@0: default: michael@0: arr.push(121730727); michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('FvxWZ'); michael@0: break; michael@0: } michael@0: } michael@0: test_32.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_32.SPEC = [{"match":"foo","body":2116660419,"fallthrough":false},{"match":null,"body":121730727,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"FvxWZ","fallthrough":false}]; michael@0: TESTS.push(test_32); michael@0: michael@0: function test_33(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(2116660419); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('FvxWZ'); michael@0: break; michael@0: default: michael@0: arr.push(121730727); michael@0: } michael@0: } michael@0: test_33.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_33.SPEC = [{"match":"foo","body":2116660419,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"FvxWZ","fallthrough":false},{"match":null,"body":121730727,"fallthrough":true}]; michael@0: TESTS.push(test_33); michael@0: michael@0: function test_34(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(1614107154); michael@0: break; michael@0: case 'foo': michael@0: arr.push(2116660419); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('FvxWZ'); michael@0: break; michael@0: } michael@0: } michael@0: test_34.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_34.SPEC = [{"match":null,"body":1614107154,"fallthrough":false},{"match":"foo","body":2116660419,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"FvxWZ","fallthrough":false}]; michael@0: TESTS.push(test_34); michael@0: michael@0: function test_35(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(2116660419); michael@0: break; michael@0: default: michael@0: arr.push(1614107154); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('FvxWZ'); michael@0: break; michael@0: } michael@0: } michael@0: test_35.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_35.SPEC = [{"match":"foo","body":2116660419,"fallthrough":false},{"match":null,"body":1614107154,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"FvxWZ","fallthrough":false}]; michael@0: TESTS.push(test_35); michael@0: michael@0: function test_36(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(2116660419); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('FvxWZ'); michael@0: break; michael@0: default: michael@0: arr.push(1614107154); michael@0: break; michael@0: } michael@0: } michael@0: test_36.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_36.SPEC = [{"match":"foo","body":2116660419,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"FvxWZ","fallthrough":false},{"match":null,"body":1614107154,"fallthrough":false}]; michael@0: TESTS.push(test_36); michael@0: michael@0: function test_37(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: arr.push('-=Z'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('R8f'); michael@0: break; michael@0: } michael@0: } michael@0: test_37.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_37.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":"-=Z","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"R8f","fallthrough":false}]; michael@0: TESTS.push(test_37); michael@0: michael@0: function test_38(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('-=Z'); michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('R8f'); michael@0: break; michael@0: } michael@0: } michael@0: test_38.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_38.SPEC = [{"match":"foo","body":"-=Z","fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"R8f","fallthrough":false}]; michael@0: TESTS.push(test_38); michael@0: michael@0: function test_39(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('-=Z'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('R8f'); michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_39.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_39.SPEC = [{"match":"foo","body":"-=Z","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"R8f","fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_39); michael@0: michael@0: function test_40(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('XfrKO0'); michael@0: case 'foo': michael@0: arr.push('-=Z'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('R8f'); michael@0: break; michael@0: } michael@0: } michael@0: test_40.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_40.SPEC = [{"match":null,"body":"XfrKO0","fallthrough":true},{"match":"foo","body":"-=Z","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"R8f","fallthrough":false}]; michael@0: TESTS.push(test_40); michael@0: michael@0: function test_41(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('-=Z'); michael@0: break; michael@0: default: michael@0: arr.push('XfrKO0'); michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('R8f'); michael@0: break; michael@0: } michael@0: } michael@0: test_41.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_41.SPEC = [{"match":"foo","body":"-=Z","fallthrough":false},{"match":null,"body":"XfrKO0","fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"R8f","fallthrough":false}]; michael@0: TESTS.push(test_41); michael@0: michael@0: function test_42(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('-=Z'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('R8f'); michael@0: break; michael@0: default: michael@0: arr.push('XfrKO0'); michael@0: } michael@0: } michael@0: test_42.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_42.SPEC = [{"match":"foo","body":"-=Z","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"R8f","fallthrough":false},{"match":null,"body":"XfrKO0","fallthrough":true}]; michael@0: TESTS.push(test_42); michael@0: michael@0: function test_43(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(465477587); michael@0: break; michael@0: case 'foo': michael@0: arr.push('-=Z'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('R8f'); michael@0: break; michael@0: } michael@0: } michael@0: test_43.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_43.SPEC = [{"match":null,"body":465477587,"fallthrough":false},{"match":"foo","body":"-=Z","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"R8f","fallthrough":false}]; michael@0: TESTS.push(test_43); michael@0: michael@0: function test_44(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('-=Z'); michael@0: break; michael@0: default: michael@0: arr.push(465477587); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('R8f'); michael@0: break; michael@0: } michael@0: } michael@0: test_44.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_44.SPEC = [{"match":"foo","body":"-=Z","fallthrough":false},{"match":null,"body":465477587,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"R8f","fallthrough":false}]; michael@0: TESTS.push(test_44); michael@0: michael@0: function test_45(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('-=Z'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('R8f'); michael@0: break; michael@0: default: michael@0: arr.push(465477587); michael@0: break; michael@0: } michael@0: } michael@0: test_45.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_45.SPEC = [{"match":"foo","body":"-=Z","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"R8f","fallthrough":false},{"match":null,"body":465477587,"fallthrough":false}]; michael@0: TESTS.push(test_45); michael@0: michael@0: function test_46(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('(0'); michael@0: break; michael@0: } michael@0: } michael@0: test_46.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_46.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"(0","fallthrough":false}]; michael@0: TESTS.push(test_46); michael@0: michael@0: function test_47(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('(0'); michael@0: break; michael@0: } michael@0: } michael@0: test_47.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_47.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"(0","fallthrough":false}]; michael@0: TESTS.push(test_47); michael@0: michael@0: function test_48(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('(0'); michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_48.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_48.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"(0","fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_48); michael@0: michael@0: function test_49(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('{5J~&%)kV'); michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('(0'); michael@0: break; michael@0: } michael@0: } michael@0: test_49.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_49.SPEC = [{"match":null,"body":"{5J~&%)kV","fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"(0","fallthrough":false}]; michael@0: TESTS.push(test_49); michael@0: michael@0: function test_50(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push('{5J~&%)kV'); michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('(0'); michael@0: break; michael@0: } michael@0: } michael@0: test_50.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_50.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":"{5J~&%)kV","fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"(0","fallthrough":false}]; michael@0: TESTS.push(test_50); michael@0: michael@0: function test_51(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('(0'); michael@0: break; michael@0: default: michael@0: arr.push('{5J~&%)kV'); michael@0: } michael@0: } michael@0: test_51.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_51.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"(0","fallthrough":false},{"match":null,"body":"{5J~&%)kV","fallthrough":true}]; michael@0: TESTS.push(test_51); michael@0: michael@0: function test_52(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('V^IbL'); michael@0: break; michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('(0'); michael@0: break; michael@0: } michael@0: } michael@0: test_52.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_52.SPEC = [{"match":null,"body":"V^IbL","fallthrough":false},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"(0","fallthrough":false}]; michael@0: TESTS.push(test_52); michael@0: michael@0: function test_53(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push('V^IbL'); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('(0'); michael@0: break; michael@0: } michael@0: } michael@0: test_53.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_53.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":"V^IbL","fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"(0","fallthrough":false}]; michael@0: TESTS.push(test_53); michael@0: michael@0: function test_54(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('(0'); michael@0: break; michael@0: default: michael@0: arr.push('V^IbL'); michael@0: break; michael@0: } michael@0: } michael@0: test_54.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_54.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"(0","fallthrough":false},{"match":null,"body":"V^IbL","fallthrough":false}]; michael@0: TESTS.push(test_54); michael@0: michael@0: function test_55(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('4'); michael@0: break; michael@0: } michael@0: } michael@0: test_55.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_55.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"4","fallthrough":false}]; michael@0: TESTS.push(test_55); michael@0: michael@0: function test_56(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('4'); michael@0: break; michael@0: } michael@0: } michael@0: test_56.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_56.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"4","fallthrough":false}]; michael@0: TESTS.push(test_56); michael@0: michael@0: function test_57(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('4'); michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_57.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_57.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"4","fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_57); michael@0: michael@0: function test_58(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('K'); michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('4'); michael@0: break; michael@0: } michael@0: } michael@0: test_58.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_58.SPEC = [{"match":null,"body":"K","fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"4","fallthrough":false}]; michael@0: TESTS.push(test_58); michael@0: michael@0: function test_59(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push('K'); michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('4'); michael@0: break; michael@0: } michael@0: } michael@0: test_59.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_59.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":"K","fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"4","fallthrough":false}]; michael@0: TESTS.push(test_59); michael@0: michael@0: function test_60(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('4'); michael@0: break; michael@0: default: michael@0: arr.push('K'); michael@0: } michael@0: } michael@0: test_60.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_60.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"4","fallthrough":false},{"match":null,"body":"K","fallthrough":true}]; michael@0: TESTS.push(test_60); michael@0: michael@0: function test_61(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(129591787); michael@0: break; michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('4'); michael@0: break; michael@0: } michael@0: } michael@0: test_61.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_61.SPEC = [{"match":null,"body":129591787,"fallthrough":false},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"4","fallthrough":false}]; michael@0: TESTS.push(test_61); michael@0: michael@0: function test_62(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push(129591787); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('4'); michael@0: break; michael@0: } michael@0: } michael@0: test_62.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_62.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":129591787,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"4","fallthrough":false}]; michael@0: TESTS.push(test_62); michael@0: michael@0: function test_63(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: arr.push('4'); michael@0: break; michael@0: default: michael@0: arr.push(129591787); michael@0: break; michael@0: } michael@0: } michael@0: test_63.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_63.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":"4","fallthrough":false},{"match":null,"body":129591787,"fallthrough":false}]; michael@0: TESTS.push(test_63); michael@0: michael@0: function test_64(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push(60518010); michael@0: break; michael@0: } michael@0: } michael@0: test_64.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_64.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":60518010,"fallthrough":false}]; michael@0: TESTS.push(test_64); michael@0: michael@0: function test_65(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push(60518010); michael@0: break; michael@0: } michael@0: } michael@0: test_65.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_65.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":60518010,"fallthrough":false}]; michael@0: TESTS.push(test_65); michael@0: michael@0: function test_66(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push(60518010); michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_66.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_66.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":60518010,"fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_66); michael@0: michael@0: function test_67(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('0]YO]}'); michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push(60518010); michael@0: break; michael@0: } michael@0: } michael@0: test_67.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_67.SPEC = [{"match":null,"body":"0]YO]}","fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":60518010,"fallthrough":false}]; michael@0: TESTS.push(test_67); michael@0: michael@0: function test_68(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push('0]YO]}'); michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push(60518010); michael@0: break; michael@0: } michael@0: } michael@0: test_68.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_68.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":"0]YO]}","fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":60518010,"fallthrough":false}]; michael@0: TESTS.push(test_68); michael@0: michael@0: function test_69(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push(60518010); michael@0: break; michael@0: default: michael@0: arr.push('0]YO]}'); michael@0: } michael@0: } michael@0: test_69.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_69.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":60518010,"fallthrough":false},{"match":null,"body":"0]YO]}","fallthrough":true}]; michael@0: TESTS.push(test_69); michael@0: michael@0: function test_70(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(1222888797); michael@0: break; michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push(60518010); michael@0: break; michael@0: } michael@0: } michael@0: test_70.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_70.SPEC = [{"match":null,"body":1222888797,"fallthrough":false},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":60518010,"fallthrough":false}]; michael@0: TESTS.push(test_70); michael@0: michael@0: function test_71(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push(1222888797); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push(60518010); michael@0: break; michael@0: } michael@0: } michael@0: test_71.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_71.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":1222888797,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":60518010,"fallthrough":false}]; michael@0: TESTS.push(test_71); michael@0: michael@0: function test_72(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push(60518010); michael@0: break; michael@0: default: michael@0: arr.push(1222888797); michael@0: break; michael@0: } michael@0: } michael@0: test_72.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_72.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":60518010,"fallthrough":false},{"match":null,"body":1222888797,"fallthrough":false}]; michael@0: TESTS.push(test_72); michael@0: michael@0: function test_73(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('ku]^x'); michael@0: break; michael@0: } michael@0: } michael@0: test_73.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_73.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"ku]^x","fallthrough":false}]; michael@0: TESTS.push(test_73); michael@0: michael@0: function test_74(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('ku]^x'); michael@0: break; michael@0: } michael@0: } michael@0: test_74.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_74.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"ku]^x","fallthrough":false}]; michael@0: TESTS.push(test_74); michael@0: michael@0: function test_75(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('ku]^x'); michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_75.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_75.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"ku]^x","fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_75); michael@0: michael@0: function test_76(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(1697959342); michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('ku]^x'); michael@0: break; michael@0: } michael@0: } michael@0: test_76.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_76.SPEC = [{"match":null,"body":1697959342,"fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"ku]^x","fallthrough":false}]; michael@0: TESTS.push(test_76); michael@0: michael@0: function test_77(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push(1697959342); michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('ku]^x'); michael@0: break; michael@0: } michael@0: } michael@0: test_77.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_77.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":1697959342,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"ku]^x","fallthrough":false}]; michael@0: TESTS.push(test_77); michael@0: michael@0: function test_78(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('ku]^x'); michael@0: break; michael@0: default: michael@0: arr.push(1697959342); michael@0: } michael@0: } michael@0: test_78.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_78.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"ku]^x","fallthrough":false},{"match":null,"body":1697959342,"fallthrough":true}]; michael@0: TESTS.push(test_78); michael@0: michael@0: function test_79(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(2023306409); michael@0: break; michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('ku]^x'); michael@0: break; michael@0: } michael@0: } michael@0: test_79.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_79.SPEC = [{"match":null,"body":2023306409,"fallthrough":false},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"ku]^x","fallthrough":false}]; michael@0: TESTS.push(test_79); michael@0: michael@0: function test_80(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push(2023306409); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('ku]^x'); michael@0: break; michael@0: } michael@0: } michael@0: test_80.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_80.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":2023306409,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"ku]^x","fallthrough":false}]; michael@0: TESTS.push(test_80); michael@0: michael@0: function test_81(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: arr.push('ku]^x'); michael@0: break; michael@0: default: michael@0: arr.push(2023306409); michael@0: break; michael@0: } michael@0: } michael@0: test_81.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_81.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":"ku]^x","fallthrough":false},{"match":null,"body":2023306409,"fallthrough":false}]; michael@0: TESTS.push(test_81); michael@0: michael@0: function test_82(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: arr.push(588167318); michael@0: break; michael@0: case 'bar': michael@0: arr.push(663884613); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_82.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_82.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":588167318,"fallthrough":false},{"match":"bar","body":663884613,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_82); michael@0: michael@0: function test_83(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(588167318); michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: arr.push(663884613); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_83.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_83.SPEC = [{"match":"foo","body":588167318,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":663884613,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_83); michael@0: michael@0: function test_84(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(588167318); michael@0: break; michael@0: case 'bar': michael@0: arr.push(663884613); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_84.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_84.SPEC = [{"match":"foo","body":588167318,"fallthrough":false},{"match":"bar","body":663884613,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_84); michael@0: michael@0: function test_85(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(1238869146); michael@0: case 'foo': michael@0: arr.push(588167318); michael@0: break; michael@0: case 'bar': michael@0: arr.push(663884613); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_85.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_85.SPEC = [{"match":null,"body":1238869146,"fallthrough":true},{"match":"foo","body":588167318,"fallthrough":false},{"match":"bar","body":663884613,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_85); michael@0: michael@0: function test_86(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(588167318); michael@0: break; michael@0: default: michael@0: arr.push(1238869146); michael@0: case 'bar': michael@0: arr.push(663884613); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_86.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_86.SPEC = [{"match":"foo","body":588167318,"fallthrough":false},{"match":null,"body":1238869146,"fallthrough":true},{"match":"bar","body":663884613,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_86); michael@0: michael@0: function test_87(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(588167318); michael@0: break; michael@0: case 'bar': michael@0: arr.push(663884613); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push(1238869146); michael@0: } michael@0: } michael@0: test_87.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_87.SPEC = [{"match":"foo","body":588167318,"fallthrough":false},{"match":"bar","body":663884613,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":1238869146,"fallthrough":true}]; michael@0: TESTS.push(test_87); michael@0: michael@0: function test_88(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('pOh#'); michael@0: break; michael@0: case 'foo': michael@0: arr.push(588167318); michael@0: break; michael@0: case 'bar': michael@0: arr.push(663884613); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_88.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_88.SPEC = [{"match":null,"body":"pOh#","fallthrough":false},{"match":"foo","body":588167318,"fallthrough":false},{"match":"bar","body":663884613,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_88); michael@0: michael@0: function test_89(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(588167318); michael@0: break; michael@0: default: michael@0: arr.push('pOh#'); michael@0: break; michael@0: case 'bar': michael@0: arr.push(663884613); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_89.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_89.SPEC = [{"match":"foo","body":588167318,"fallthrough":false},{"match":null,"body":"pOh#","fallthrough":false},{"match":"bar","body":663884613,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_89); michael@0: michael@0: function test_90(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(588167318); michael@0: break; michael@0: case 'bar': michael@0: arr.push(663884613); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push('pOh#'); michael@0: break; michael@0: } michael@0: } michael@0: test_90.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_90.SPEC = [{"match":"foo","body":588167318,"fallthrough":false},{"match":"bar","body":663884613,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":"pOh#","fallthrough":false}]; michael@0: TESTS.push(test_90); michael@0: michael@0: function test_91(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: arr.push('Z!I#t'); michael@0: break; michael@0: case 'bar': michael@0: arr.push('D'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_91.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_91.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":"Z!I#t","fallthrough":false},{"match":"bar","body":"D","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_91); michael@0: michael@0: function test_92(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('Z!I#t'); michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: arr.push('D'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_92.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_92.SPEC = [{"match":"foo","body":"Z!I#t","fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":"D","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_92); michael@0: michael@0: function test_93(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('Z!I#t'); michael@0: break; michael@0: case 'bar': michael@0: arr.push('D'); michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: } michael@0: } michael@0: test_93.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_93.SPEC = [{"match":"foo","body":"Z!I#t","fallthrough":false},{"match":"bar","body":"D","fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_93); michael@0: michael@0: function test_94(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(63474909); michael@0: case 'foo': michael@0: arr.push('Z!I#t'); michael@0: break; michael@0: case 'bar': michael@0: arr.push('D'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_94.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_94.SPEC = [{"match":null,"body":63474909,"fallthrough":true},{"match":"foo","body":"Z!I#t","fallthrough":false},{"match":"bar","body":"D","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_94); michael@0: michael@0: function test_95(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('Z!I#t'); michael@0: break; michael@0: default: michael@0: arr.push(63474909); michael@0: case 'bar': michael@0: arr.push('D'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_95.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_95.SPEC = [{"match":"foo","body":"Z!I#t","fallthrough":false},{"match":null,"body":63474909,"fallthrough":true},{"match":"bar","body":"D","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_95); michael@0: michael@0: function test_96(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('Z!I#t'); michael@0: break; michael@0: case 'bar': michael@0: arr.push('D'); michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: arr.push(63474909); michael@0: } michael@0: } michael@0: test_96.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_96.SPEC = [{"match":"foo","body":"Z!I#t","fallthrough":false},{"match":"bar","body":"D","fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":63474909,"fallthrough":true}]; michael@0: TESTS.push(test_96); michael@0: michael@0: function test_97(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(1165220694); michael@0: break; michael@0: case 'foo': michael@0: arr.push('Z!I#t'); michael@0: break; michael@0: case 'bar': michael@0: arr.push('D'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_97.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_97.SPEC = [{"match":null,"body":1165220694,"fallthrough":false},{"match":"foo","body":"Z!I#t","fallthrough":false},{"match":"bar","body":"D","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_97); michael@0: michael@0: function test_98(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('Z!I#t'); michael@0: break; michael@0: default: michael@0: arr.push(1165220694); michael@0: break; michael@0: case 'bar': michael@0: arr.push('D'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_98.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_98.SPEC = [{"match":"foo","body":"Z!I#t","fallthrough":false},{"match":null,"body":1165220694,"fallthrough":false},{"match":"bar","body":"D","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_98); michael@0: michael@0: function test_99(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('Z!I#t'); michael@0: break; michael@0: case 'bar': michael@0: arr.push('D'); michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: arr.push(1165220694); michael@0: break; michael@0: } michael@0: } michael@0: test_99.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_99.SPEC = [{"match":"foo","body":"Z!I#t","fallthrough":false},{"match":"bar","body":"D","fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":1165220694,"fallthrough":false}]; michael@0: TESTS.push(test_99); michael@0: michael@0: function test_100(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push(1994756408); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_100.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_100.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":1994756408,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_100); michael@0: michael@0: function test_101(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: arr.push(1994756408); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_101.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_101.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":1994756408,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_101); michael@0: michael@0: function test_102(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push(1994756408); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_102.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_102.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":1994756408,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_102); michael@0: michael@0: function test_103(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('*8ZYmVI($X'); michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push(1994756408); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_103.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_103.SPEC = [{"match":null,"body":"*8ZYmVI($X","fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":1994756408,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_103); michael@0: michael@0: function test_104(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push('*8ZYmVI($X'); michael@0: case 'bar': michael@0: arr.push(1994756408); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_104.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_104.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":"*8ZYmVI($X","fallthrough":true},{"match":"bar","body":1994756408,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_104); michael@0: michael@0: function test_105(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push(1994756408); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push('*8ZYmVI($X'); michael@0: } michael@0: } michael@0: test_105.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_105.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":1994756408,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":"*8ZYmVI($X","fallthrough":true}]; michael@0: TESTS.push(test_105); michael@0: michael@0: function test_106(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(207183901); michael@0: break; michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push(1994756408); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_106.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_106.SPEC = [{"match":null,"body":207183901,"fallthrough":false},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":1994756408,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_106); michael@0: michael@0: function test_107(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push(207183901); michael@0: break; michael@0: case 'bar': michael@0: arr.push(1994756408); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_107.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_107.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":207183901,"fallthrough":false},{"match":"bar","body":1994756408,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_107); michael@0: michael@0: function test_108(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push(1994756408); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push(207183901); michael@0: break; michael@0: } michael@0: } michael@0: test_108.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_108.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":1994756408,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":207183901,"fallthrough":false}]; michael@0: TESTS.push(test_108); michael@0: michael@0: function test_109(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push('YJQk'); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_109.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_109.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":"YJQk","fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_109); michael@0: michael@0: function test_110(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: case 'bar': michael@0: arr.push('YJQk'); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_110.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_110.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":"YJQk","fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_110); michael@0: michael@0: function test_111(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push('YJQk'); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_111.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_111.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":"YJQk","fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_111); michael@0: michael@0: function test_112(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('04mJy'); michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push('YJQk'); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_112.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_112.SPEC = [{"match":null,"body":"04mJy","fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":"YJQk","fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_112); michael@0: michael@0: function test_113(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push('04mJy'); michael@0: case 'bar': michael@0: arr.push('YJQk'); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_113.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_113.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":"04mJy","fallthrough":true},{"match":"bar","body":"YJQk","fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_113); michael@0: michael@0: function test_114(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push('YJQk'); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push('04mJy'); michael@0: } michael@0: } michael@0: test_114.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_114.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":"YJQk","fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":"04mJy","fallthrough":true}]; michael@0: TESTS.push(test_114); michael@0: michael@0: function test_115(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('0NgLbYKr~c'); michael@0: break; michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push('YJQk'); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_115.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_115.SPEC = [{"match":null,"body":"0NgLbYKr~c","fallthrough":false},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":"YJQk","fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_115); michael@0: michael@0: function test_116(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push('0NgLbYKr~c'); michael@0: break; michael@0: case 'bar': michael@0: arr.push('YJQk'); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_116.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_116.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":"0NgLbYKr~c","fallthrough":false},{"match":"bar","body":"YJQk","fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_116); michael@0: michael@0: function test_117(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push('YJQk'); michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push('0NgLbYKr~c'); michael@0: break; michael@0: } michael@0: } michael@0: test_117.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_117.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":"YJQk","fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":"0NgLbYKr~c","fallthrough":false}]; michael@0: TESTS.push(test_117); michael@0: michael@0: function test_118(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push('[^U}J^z'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_118.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_118.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":"[^U}J^z","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_118); michael@0: michael@0: function test_119(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: arr.push('[^U}J^z'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_119.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_119.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":"[^U}J^z","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_119); michael@0: michael@0: function test_120(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push('[^U}J^z'); michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: } michael@0: } michael@0: test_120.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_120.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":"[^U}J^z","fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_120); michael@0: michael@0: function test_121(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('Y'); michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push('[^U}J^z'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_121.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_121.SPEC = [{"match":null,"body":"Y","fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":"[^U}J^z","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_121); michael@0: michael@0: function test_122(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push('Y'); michael@0: case 'bar': michael@0: arr.push('[^U}J^z'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_122.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_122.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":"Y","fallthrough":true},{"match":"bar","body":"[^U}J^z","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_122); michael@0: michael@0: function test_123(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push('[^U}J^z'); michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: arr.push('Y'); michael@0: } michael@0: } michael@0: test_123.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_123.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":"[^U}J^z","fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":"Y","fallthrough":true}]; michael@0: TESTS.push(test_123); michael@0: michael@0: function test_124(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(279382281); michael@0: break; michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push('[^U}J^z'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_124.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_124.SPEC = [{"match":null,"body":279382281,"fallthrough":false},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":"[^U}J^z","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_124); michael@0: michael@0: function test_125(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push(279382281); michael@0: break; michael@0: case 'bar': michael@0: arr.push('[^U}J^z'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_125.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_125.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":279382281,"fallthrough":false},{"match":"bar","body":"[^U}J^z","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_125); michael@0: michael@0: function test_126(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: arr.push('[^U}J^z'); michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: arr.push(279382281); michael@0: break; michael@0: } michael@0: } michael@0: test_126.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_126.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":"[^U}J^z","fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":279382281,"fallthrough":false}]; michael@0: TESTS.push(test_126); michael@0: michael@0: function test_127(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push('7+leA1'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_127.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_127.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":"7+leA1","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_127); michael@0: michael@0: function test_128(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: case 'bar': michael@0: arr.push('7+leA1'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_128.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_128.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":"7+leA1","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_128); michael@0: michael@0: function test_129(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push('7+leA1'); michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: } michael@0: } michael@0: test_129.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_129.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":"7+leA1","fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_129); michael@0: michael@0: function test_130(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(282691036); michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push('7+leA1'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_130.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_130.SPEC = [{"match":null,"body":282691036,"fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":"7+leA1","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_130); michael@0: michael@0: function test_131(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push(282691036); michael@0: case 'bar': michael@0: arr.push('7+leA1'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_131.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_131.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":282691036,"fallthrough":true},{"match":"bar","body":"7+leA1","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_131); michael@0: michael@0: function test_132(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push('7+leA1'); michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: arr.push(282691036); michael@0: } michael@0: } michael@0: test_132.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_132.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":"7+leA1","fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":282691036,"fallthrough":true}]; michael@0: TESTS.push(test_132); michael@0: michael@0: function test_133(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('C^kPR'); michael@0: break; michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push('7+leA1'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_133.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_133.SPEC = [{"match":null,"body":"C^kPR","fallthrough":false},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":"7+leA1","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_133); michael@0: michael@0: function test_134(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push('C^kPR'); michael@0: break; michael@0: case 'bar': michael@0: arr.push('7+leA1'); michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_134.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_134.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":"C^kPR","fallthrough":false},{"match":"bar","body":"7+leA1","fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_134); michael@0: michael@0: function test_135(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: arr.push('7+leA1'); michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: arr.push('C^kPR'); michael@0: break; michael@0: } michael@0: } michael@0: test_135.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_135.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":"7+leA1","fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":"C^kPR","fallthrough":false}]; michael@0: TESTS.push(test_135); michael@0: michael@0: function test_136(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: arr.push(1580091060); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_136.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_136.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":1580091060,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_136); michael@0: michael@0: function test_137(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(1580091060); michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_137.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_137.SPEC = [{"match":"foo","body":1580091060,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_137); michael@0: michael@0: function test_138(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(1580091060); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_138.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_138.SPEC = [{"match":"foo","body":1580091060,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_138); michael@0: michael@0: function test_139(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(1822221944); michael@0: case 'foo': michael@0: arr.push(1580091060); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_139.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_139.SPEC = [{"match":null,"body":1822221944,"fallthrough":true},{"match":"foo","body":1580091060,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_139); michael@0: michael@0: function test_140(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(1580091060); michael@0: break; michael@0: default: michael@0: arr.push(1822221944); michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_140.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_140.SPEC = [{"match":"foo","body":1580091060,"fallthrough":false},{"match":null,"body":1822221944,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_140); michael@0: michael@0: function test_141(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(1580091060); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push(1822221944); michael@0: } michael@0: } michael@0: test_141.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_141.SPEC = [{"match":"foo","body":1580091060,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":1822221944,"fallthrough":true}]; michael@0: TESTS.push(test_141); michael@0: michael@0: function test_142(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(1855786158); michael@0: break; michael@0: case 'foo': michael@0: arr.push(1580091060); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_142.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_142.SPEC = [{"match":null,"body":1855786158,"fallthrough":false},{"match":"foo","body":1580091060,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_142); michael@0: michael@0: function test_143(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(1580091060); michael@0: break; michael@0: default: michael@0: arr.push(1855786158); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_143.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_143.SPEC = [{"match":"foo","body":1580091060,"fallthrough":false},{"match":null,"body":1855786158,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_143); michael@0: michael@0: function test_144(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(1580091060); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push(1855786158); michael@0: break; michael@0: } michael@0: } michael@0: test_144.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_144.SPEC = [{"match":"foo","body":1580091060,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":1855786158,"fallthrough":false}]; michael@0: TESTS.push(test_144); michael@0: michael@0: function test_145(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: arr.push('XO'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_145.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_145.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":"XO","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_145); michael@0: michael@0: function test_146(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('XO'); michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_146.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_146.SPEC = [{"match":"foo","body":"XO","fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_146); michael@0: michael@0: function test_147(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('XO'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_147.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_147.SPEC = [{"match":"foo","body":"XO","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_147); michael@0: michael@0: function test_148(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('L'); michael@0: case 'foo': michael@0: arr.push('XO'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_148.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_148.SPEC = [{"match":null,"body":"L","fallthrough":true},{"match":"foo","body":"XO","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_148); michael@0: michael@0: function test_149(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('XO'); michael@0: break; michael@0: default: michael@0: arr.push('L'); michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_149.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_149.SPEC = [{"match":"foo","body":"XO","fallthrough":false},{"match":null,"body":"L","fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_149); michael@0: michael@0: function test_150(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('XO'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push('L'); michael@0: } michael@0: } michael@0: test_150.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_150.SPEC = [{"match":"foo","body":"XO","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":"L","fallthrough":true}]; michael@0: TESTS.push(test_150); michael@0: michael@0: function test_151(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(1118900933); michael@0: break; michael@0: case 'foo': michael@0: arr.push('XO'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_151.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_151.SPEC = [{"match":null,"body":1118900933,"fallthrough":false},{"match":"foo","body":"XO","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_151); michael@0: michael@0: function test_152(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('XO'); michael@0: break; michael@0: default: michael@0: arr.push(1118900933); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_152.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_152.SPEC = [{"match":"foo","body":"XO","fallthrough":false},{"match":null,"body":1118900933,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_152); michael@0: michael@0: function test_153(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('XO'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push(1118900933); michael@0: break; michael@0: } michael@0: } michael@0: test_153.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_153.SPEC = [{"match":"foo","body":"XO","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":1118900933,"fallthrough":false}]; michael@0: TESTS.push(test_153); michael@0: michael@0: function test_154(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: arr.push('H@'); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_154.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_154.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":"H@","fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_154); michael@0: michael@0: function test_155(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('H@'); michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_155.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_155.SPEC = [{"match":"foo","body":"H@","fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_155); michael@0: michael@0: function test_156(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('H@'); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: } michael@0: } michael@0: test_156.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_156.SPEC = [{"match":"foo","body":"H@","fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_156); michael@0: michael@0: function test_157(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('f8n'); michael@0: case 'foo': michael@0: arr.push('H@'); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_157.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_157.SPEC = [{"match":null,"body":"f8n","fallthrough":true},{"match":"foo","body":"H@","fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_157); michael@0: michael@0: function test_158(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('H@'); michael@0: break; michael@0: default: michael@0: arr.push('f8n'); michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_158.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_158.SPEC = [{"match":"foo","body":"H@","fallthrough":false},{"match":null,"body":"f8n","fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_158); michael@0: michael@0: function test_159(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('H@'); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: arr.push('f8n'); michael@0: } michael@0: } michael@0: test_159.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_159.SPEC = [{"match":"foo","body":"H@","fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":"f8n","fallthrough":true}]; michael@0: TESTS.push(test_159); michael@0: michael@0: function test_160(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('4rg'); michael@0: break; michael@0: case 'foo': michael@0: arr.push('H@'); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_160.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_160.SPEC = [{"match":null,"body":"4rg","fallthrough":false},{"match":"foo","body":"H@","fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_160); michael@0: michael@0: function test_161(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('H@'); michael@0: break; michael@0: default: michael@0: arr.push('4rg'); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_161.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_161.SPEC = [{"match":"foo","body":"H@","fallthrough":false},{"match":null,"body":"4rg","fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_161); michael@0: michael@0: function test_162(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push('H@'); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: arr.push('4rg'); michael@0: break; michael@0: } michael@0: } michael@0: test_162.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_162.SPEC = [{"match":"foo","body":"H@","fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":"4rg","fallthrough":false}]; michael@0: TESTS.push(test_162); michael@0: michael@0: function test_163(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: arr.push(1921603085); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_163.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_163.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":1921603085,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_163); michael@0: michael@0: function test_164(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(1921603085); michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_164.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_164.SPEC = [{"match":"foo","body":1921603085,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_164); michael@0: michael@0: function test_165(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(1921603085); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: default: michael@0: } michael@0: } michael@0: test_165.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_165.SPEC = [{"match":"foo","body":1921603085,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_165); michael@0: michael@0: function test_166(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(2201436); michael@0: case 'foo': michael@0: arr.push(1921603085); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_166.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_166.SPEC = [{"match":null,"body":2201436,"fallthrough":true},{"match":"foo","body":1921603085,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_166); michael@0: michael@0: function test_167(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(1921603085); michael@0: break; michael@0: default: michael@0: arr.push(2201436); michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_167.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_167.SPEC = [{"match":"foo","body":1921603085,"fallthrough":false},{"match":null,"body":2201436,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_167); michael@0: michael@0: function test_168(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(1921603085); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: default: michael@0: arr.push(2201436); michael@0: } michael@0: } michael@0: test_168.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_168.SPEC = [{"match":"foo","body":1921603085,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":2201436,"fallthrough":true}]; michael@0: TESTS.push(test_168); michael@0: michael@0: function test_169(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('(vPssM{'); michael@0: break; michael@0: case 'foo': michael@0: arr.push(1921603085); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_169.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_169.SPEC = [{"match":null,"body":"(vPssM{","fallthrough":false},{"match":"foo","body":1921603085,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_169); michael@0: michael@0: function test_170(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(1921603085); michael@0: break; michael@0: default: michael@0: arr.push('(vPssM{'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_170.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_170.SPEC = [{"match":"foo","body":1921603085,"fallthrough":false},{"match":null,"body":"(vPssM{","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_170); michael@0: michael@0: function test_171(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: arr.push(1921603085); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: default: michael@0: arr.push('(vPssM{'); michael@0: break; michael@0: } michael@0: } michael@0: test_171.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_171.SPEC = [{"match":"foo","body":1921603085,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":"(vPssM{","fallthrough":false}]; michael@0: TESTS.push(test_171); michael@0: michael@0: function test_172(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_172.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_172.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_172); michael@0: michael@0: function test_173(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_173.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_173.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_173); michael@0: michael@0: function test_174(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_174.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_174.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_174); michael@0: michael@0: function test_175(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('y'); michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_175.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_175.SPEC = [{"match":null,"body":"y","fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_175); michael@0: michael@0: function test_176(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push('y'); michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_176.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_176.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":"y","fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_176); michael@0: michael@0: function test_177(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push('y'); michael@0: } michael@0: } michael@0: test_177.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_177.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":"y","fallthrough":true}]; michael@0: TESTS.push(test_177); michael@0: michael@0: function test_178(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('H'); michael@0: break; michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_178.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_178.SPEC = [{"match":null,"body":"H","fallthrough":false},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_178); michael@0: michael@0: function test_179(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push('H'); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_179.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_179.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":"H","fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_179); michael@0: michael@0: function test_180(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push('H'); michael@0: break; michael@0: } michael@0: } michael@0: test_180.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_180.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":"H","fallthrough":false}]; michael@0: TESTS.push(test_180); michael@0: michael@0: function test_181(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_181.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_181.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_181); michael@0: michael@0: function test_182(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_182.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_182.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_182); michael@0: michael@0: function test_183(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_183.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_183.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_183); michael@0: michael@0: function test_184(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('0vM}'); michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_184.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_184.SPEC = [{"match":null,"body":"0vM}","fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_184); michael@0: michael@0: function test_185(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push('0vM}'); michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_185.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_185.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":"0vM}","fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_185); michael@0: michael@0: function test_186(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push('0vM}'); michael@0: } michael@0: } michael@0: test_186.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_186.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":"0vM}","fallthrough":true}]; michael@0: TESTS.push(test_186); michael@0: michael@0: function test_187(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('jn~d(x'); michael@0: break; michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_187.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_187.SPEC = [{"match":null,"body":"jn~d(x","fallthrough":false},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_187); michael@0: michael@0: function test_188(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push('jn~d(x'); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_188.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_188.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":"jn~d(x","fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_188); michael@0: michael@0: function test_189(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push('jn~d(x'); michael@0: break; michael@0: } michael@0: } michael@0: test_189.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_189.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":"jn~d(x","fallthrough":false}]; michael@0: TESTS.push(test_189); michael@0: michael@0: function test_190(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_190.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_190.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_190); michael@0: michael@0: function test_191(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_191.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_191.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_191); michael@0: michael@0: function test_192(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_192.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_192.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_192); michael@0: michael@0: function test_193(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('['); michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_193.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_193.SPEC = [{"match":null,"body":"[","fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_193); michael@0: michael@0: function test_194(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push('['); michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_194.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_194.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":"[","fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_194); michael@0: michael@0: function test_195(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push('['); michael@0: } michael@0: } michael@0: test_195.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_195.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":"[","fallthrough":true}]; michael@0: TESTS.push(test_195); michael@0: michael@0: function test_196(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('3DbGY'); michael@0: break; michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_196.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_196.SPEC = [{"match":null,"body":"3DbGY","fallthrough":false},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_196); michael@0: michael@0: function test_197(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push('3DbGY'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_197.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_197.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":"3DbGY","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_197); michael@0: michael@0: function test_198(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push('3DbGY'); michael@0: break; michael@0: } michael@0: } michael@0: test_198.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_198.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":"3DbGY","fallthrough":false}]; michael@0: TESTS.push(test_198); michael@0: michael@0: function test_199(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_199.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_199.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_199); michael@0: michael@0: function test_200(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_200.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_200.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_200); michael@0: michael@0: function test_201(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: } michael@0: } michael@0: test_201.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_201.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_201); michael@0: michael@0: function test_202(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(1320190826); michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_202.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_202.SPEC = [{"match":null,"body":1320190826,"fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_202); michael@0: michael@0: function test_203(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push(1320190826); michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_203.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_203.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":1320190826,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_203); michael@0: michael@0: function test_204(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push(1320190826); michael@0: } michael@0: } michael@0: test_204.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_204.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":1320190826,"fallthrough":true}]; michael@0: TESTS.push(test_204); michael@0: michael@0: function test_205(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(1211439111); michael@0: break; michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_205.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_205.SPEC = [{"match":null,"body":1211439111,"fallthrough":false},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_205); michael@0: michael@0: function test_206(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push(1211439111); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: } michael@0: } michael@0: test_206.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_206.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":1211439111,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false}]; michael@0: TESTS.push(test_206); michael@0: michael@0: function test_207(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: break; michael@0: default: michael@0: arr.push(1211439111); michael@0: break; michael@0: } michael@0: } michael@0: test_207.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_207.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":false},{"match":null,"body":1211439111,"fallthrough":false}]; michael@0: TESTS.push(test_207); michael@0: michael@0: function test_208(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_208.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_208.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_208); michael@0: michael@0: function test_209(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_209.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_209.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_209); michael@0: michael@0: function test_210(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: } michael@0: } michael@0: test_210.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_210.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_210); michael@0: michael@0: function test_211(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(1547874695); michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_211.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_211.SPEC = [{"match":null,"body":1547874695,"fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_211); michael@0: michael@0: function test_212(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push(1547874695); michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_212.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_212.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":1547874695,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_212); michael@0: michael@0: function test_213(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: arr.push(1547874695); michael@0: } michael@0: } michael@0: test_213.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_213.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":1547874695,"fallthrough":true}]; michael@0: TESTS.push(test_213); michael@0: michael@0: function test_214(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('@_2GFlnK=t'); michael@0: break; michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_214.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_214.SPEC = [{"match":null,"body":"@_2GFlnK=t","fallthrough":false},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_214); michael@0: michael@0: function test_215(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push('@_2GFlnK=t'); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_215.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_215.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":"@_2GFlnK=t","fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_215); michael@0: michael@0: function test_216(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: arr.push('@_2GFlnK=t'); michael@0: break; michael@0: } michael@0: } michael@0: test_216.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_216.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":"@_2GFlnK=t","fallthrough":false}]; michael@0: TESTS.push(test_216); michael@0: michael@0: function test_217(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_217.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_217.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_217); michael@0: michael@0: function test_218(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_218.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_218.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_218); michael@0: michael@0: function test_219(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: } michael@0: } michael@0: test_219.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_219.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_219); michael@0: michael@0: function test_220(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('~C$'); michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_220.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_220.SPEC = [{"match":null,"body":"~C$","fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_220); michael@0: michael@0: function test_221(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push('~C$'); michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_221.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_221.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":"~C$","fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_221); michael@0: michael@0: function test_222(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: arr.push('~C$'); michael@0: } michael@0: } michael@0: test_222.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_222.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":"~C$","fallthrough":true}]; michael@0: TESTS.push(test_222); michael@0: michael@0: function test_223(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('2sfo%'); michael@0: break; michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_223.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_223.SPEC = [{"match":null,"body":"2sfo%","fallthrough":false},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_223); michael@0: michael@0: function test_224(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push('2sfo%'); michael@0: break; michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_224.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_224.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":"2sfo%","fallthrough":false},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_224); michael@0: michael@0: function test_225(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: break; michael@0: case 'zing': michael@0: default: michael@0: arr.push('2sfo%'); michael@0: break; michael@0: } michael@0: } michael@0: test_225.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_225.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":false},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":"2sfo%","fallthrough":false}]; michael@0: TESTS.push(test_225); michael@0: michael@0: function test_226(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_226.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_226.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_226); michael@0: michael@0: function test_227(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_227.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_227.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_227); michael@0: michael@0: function test_228(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: default: michael@0: } michael@0: } michael@0: test_228.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_228.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_228); michael@0: michael@0: function test_229(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(1637942279); michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_229.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_229.SPEC = [{"match":null,"body":1637942279,"fallthrough":true},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_229); michael@0: michael@0: function test_230(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push(1637942279); michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_230.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_230.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":1637942279,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_230); michael@0: michael@0: function test_231(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: default: michael@0: arr.push(1637942279); michael@0: } michael@0: } michael@0: test_231.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_231.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":1637942279,"fallthrough":true}]; michael@0: TESTS.push(test_231); michael@0: michael@0: function test_232(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push('4E!jR'); michael@0: break; michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_232.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_232.SPEC = [{"match":null,"body":"4E!jR","fallthrough":false},{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_232); michael@0: michael@0: function test_233(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: default: michael@0: arr.push('4E!jR'); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_233.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_233.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":null,"body":"4E!jR","fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_233); michael@0: michael@0: function test_234(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: default: michael@0: arr.push('4E!jR'); michael@0: break; michael@0: } michael@0: } michael@0: test_234.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_234.SPEC = [{"match":"foo","body":null,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":"4E!jR","fallthrough":false}]; michael@0: TESTS.push(test_234); michael@0: michael@0: function test_235(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_235.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_235.SPEC = [{"match":null,"body":null,"fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_235); michael@0: michael@0: function test_236(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_236.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_236.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_236); michael@0: michael@0: function test_237(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: default: michael@0: } michael@0: } michael@0: test_237.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_237.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":null,"fallthrough":true}]; michael@0: TESTS.push(test_237); michael@0: michael@0: function test_238(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(')fSNzp06'); michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_238.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_238.SPEC = [{"match":null,"body":")fSNzp06","fallthrough":true},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_238); michael@0: michael@0: function test_239(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push(')fSNzp06'); michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_239.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_239.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":")fSNzp06","fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_239); michael@0: michael@0: function test_240(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: default: michael@0: arr.push(')fSNzp06'); michael@0: } michael@0: } michael@0: test_240.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_240.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":")fSNzp06","fallthrough":true}]; michael@0: TESTS.push(test_240); michael@0: michael@0: function test_241(x, arr) { michael@0: switch(x) { michael@0: default: michael@0: arr.push(974910083); michael@0: break; michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_241.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_241.SPEC = [{"match":null,"body":974910083,"fallthrough":false},{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_241); michael@0: michael@0: function test_242(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: default: michael@0: arr.push(974910083); michael@0: break; michael@0: case 'bar': michael@0: case 'zing': michael@0: } michael@0: } michael@0: test_242.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_242.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":null,"body":974910083,"fallthrough":false},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true}]; michael@0: TESTS.push(test_242); michael@0: michael@0: function test_243(x, arr) { michael@0: switch(x) { michael@0: case 'foo': michael@0: case 'bar': michael@0: case 'zing': michael@0: default: michael@0: arr.push(974910083); michael@0: break; michael@0: } michael@0: } michael@0: test_243.INPUTS = ['foo', 'bar', 'zing']; michael@0: test_243.SPEC = [{"match":"foo","body":null,"fallthrough":true},{"match":"bar","body":null,"fallthrough":true},{"match":"zing","body":null,"fallthrough":true},{"match":null,"body":974910083,"fallthrough":false}]; michael@0: TESTS.push(test_243); michael@0: michael@0: michael@0: ///////////////////////////////////////// michael@0: // RUNNER // michael@0: ///////////////////////////////////////// michael@0: michael@0: for(var i = 0; i < TESTS.length; i++) { michael@0: RunTest(TESTS[i]); michael@0: }