/////////////////////////////////////////
// This is a generated file!
// See jit-tests/etc/generate-lookupswitch-tests.js for the code
// that generated this code!
/////////////////////////////////////////
/////////////////////////////////////////
// PRELUDE //
/////////////////////////////////////////
// Avoid eager compilation of the global-scope.
try {} catch (x) {};
function ASSERT (cond, msg) {
assertEq(cond, true , msg);
}
function IsNull(x) {
return typeof x == "object" && x == null ;
}
function IsNum(x) {
return typeof x == "number" ;
}
function ArraysEqual(arr1, arr2) {
ASSERT (arr1.length == arr2.length, "Lengths not equal" );
for (var i = 0; i < arr1.length; i++) {
ASSERT (typeof arr1[i] == typeof arr2[i], "Types not equal for position " + i);
ASSERT (arr1[i] == arr2[i], "Values not equal for position " + i);
}
}
function InterpretSwitch(spec, input, outputArray) {
var foundMatch = undefined, foundDefault = undefined;
for (var i = 0; i < spec.length; i++) {
var caseSpec = spec[i], match = caseSpec.match;
if (IsNull(match)) {
foundDefault = i;
continue ;
} else if (match === input) {
foundMatch = i;
break ;
}
}
var matchI = IsNum(foundMatch) ? foundMatch : foundDefault;
if (IsNum(matchI)) {
for (var i = matchI; i < spec.length; i++) {
var caseSpec = spec[i], match = caseSpec.match, body = caseSpec.body, fallthrough = caseSpec.fallthrough;
if (!IsNull(body)) {
outputArray.push(body);
}
if (!fallthrough) {
break ;
}
}
}
}
function RunTest(test) {
var inputs = test.INPUTS;
inputs.push("UNMATCHED_CASE" );
var spec = test.SPEC;
var results1 = [];
for (var i = 0; i < 80; i++) {
for (var j = 0; j < inputs.length; j++) {
test(inputs[j], results1);
}
}
var results2 = [];
for (var i = 0; i < 80; i++) {
for (var j = 0; j < inputs.length; j++) {
InterpretSwitch(spec, inputs[j], results2);
}
}
ArraysEqual(results1, results2);
}
/////////////////////////////////////////
// TEST CASES //
/////////////////////////////////////////
var TESTS = [];
function test_1(x, arr) {
switch (x) {
default :
case 'foo' :
arr.push(777087170);
break ;
case 'bar' :
arr.push(641037838);
break ;
case 'zing' :
arr.push(1652156613);
break ;
}
}
test_1.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_1);
function test_2(x, arr) {
switch (x) {
case 'foo' :
arr.push(777087170);
break ;
default :
case 'bar' :
arr.push(641037838);
break ;
case 'zing' :
arr.push(1652156613);
break ;
}
}
test_2.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_2);
function test_3(x, arr) {
switch (x) {
case 'foo' :
arr.push(777087170);
break ;
case 'bar' :
arr.push(641037838);
break ;
case 'zing' :
arr.push(1652156613);
break ;
default :
}
}
test_3.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_3);
function test_4(x, arr) {
switch (x) {
default :
arr.push(633415567);
case 'foo' :
arr.push(777087170);
break ;
case 'bar' :
arr.push(641037838);
break ;
case 'zing' :
arr.push(1652156613);
break ;
}
}
test_4.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_4);
function test_5(x, arr) {
switch (x) {
case 'foo' :
arr.push(777087170);
break ;
default :
arr.push(633415567);
case 'bar' :
arr.push(641037838);
break ;
case 'zing' :
arr.push(1652156613);
break ;
}
}
test_5.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_5);
function test_6(x, arr) {
switch (x) {
case 'foo' :
arr.push(777087170);
break ;
case 'bar' :
arr.push(641037838);
break ;
case 'zing' :
arr.push(1652156613);
break ;
default :
arr.push(633415567);
}
}
test_6.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_6);
function test_7(x, arr) {
switch (x) {
default :
arr.push('5zO^Qj' );
break ;
case 'foo' :
arr.push(777087170);
break ;
case 'bar' :
arr.push(641037838);
break ;
case 'zing' :
arr.push(1652156613);
break ;
}
}
test_7.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_7);
function test_8(x, arr) {
switch (x) {
case 'foo' :
arr.push(777087170);
break ;
default :
arr.push('5zO^Qj' );
break ;
case 'bar' :
arr.push(641037838);
break ;
case 'zing' :
arr.push(1652156613);
break ;
}
}
test_8.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_8);
function test_9(x, arr) {
switch (x) {
case 'foo' :
arr.push(777087170);
break ;
case 'bar' :
arr.push(641037838);
break ;
case 'zing' :
arr.push(1652156613);
break ;
default :
arr.push('5zO^Qj' );
break ;
}
}
test_9.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_9);
function test_10(x, arr) {
switch (x) {
default :
case 'foo' :
break ;
case 'bar' :
arr.push('c' );
break ;
case 'zing' :
arr.push(2008006064);
break ;
}
}
test_10.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_10);
function test_11(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
case 'bar' :
arr.push('c' );
break ;
case 'zing' :
arr.push(2008006064);
break ;
}
}
test_11.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_11);
function test_12(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
arr.push('c' );
break ;
case 'zing' :
arr.push(2008006064);
break ;
default :
}
}
test_12.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_12);
function test_13(x, arr) {
switch (x) {
default :
arr.push('M' );
case 'foo' :
break ;
case 'bar' :
arr.push('c' );
break ;
case 'zing' :
arr.push(2008006064);
break ;
}
}
test_13.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_13);
function test_14(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
arr.push('M' );
case 'bar' :
arr.push('c' );
break ;
case 'zing' :
arr.push(2008006064);
break ;
}
}
test_14.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_14);
function test_15(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
arr.push('c' );
break ;
case 'zing' :
arr.push(2008006064);
break ;
default :
arr.push('M' );
}
}
test_15.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_15);
function test_16(x, arr) {
switch (x) {
default :
arr.push(1424069880);
break ;
case 'foo' :
break ;
case 'bar' :
arr.push('c' );
break ;
case 'zing' :
arr.push(2008006064);
break ;
}
}
test_16.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_16);
function test_17(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
arr.push(1424069880);
break ;
case 'bar' :
arr.push('c' );
break ;
case 'zing' :
arr.push(2008006064);
break ;
}
}
test_17.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_17);
function test_18(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
arr.push('c' );
break ;
case 'zing' :
arr.push(2008006064);
break ;
default :
arr.push(1424069880);
break ;
}
}
test_18.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_18);
function test_19(x, arr) {
switch (x) {
default :
case 'foo' :
case 'bar' :
arr.push(1915689729);
break ;
case 'zing' :
arr.push(973913896);
break ;
}
}
test_19.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_19);
function test_20(x, arr) {
switch (x) {
case 'foo' :
default :
case 'bar' :
arr.push(1915689729);
break ;
case 'zing' :
arr.push(973913896);
break ;
}
}
test_20.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_20);
function test_21(x, arr) {
switch (x) {
case 'foo' :
case 'bar' :
arr.push(1915689729);
break ;
case 'zing' :
arr.push(973913896);
break ;
default :
}
}
test_21.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_21);
function test_22(x, arr) {
switch (x) {
default :
arr.push(104770589);
case 'foo' :
case 'bar' :
arr.push(1915689729);
break ;
case 'zing' :
arr.push(973913896);
break ;
}
}
test_22.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_22);
function test_23(x, arr) {
switch (x) {
case 'foo' :
default :
arr.push(104770589);
case 'bar' :
arr.push(1915689729);
break ;
case 'zing' :
arr.push(973913896);
break ;
}
}
test_23.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_23);
function test_24(x, arr) {
switch (x) {
case 'foo' :
case 'bar' :
arr.push(1915689729);
break ;
case 'zing' :
arr.push(973913896);
break ;
default :
arr.push(104770589);
}
}
test_24.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_24);
function test_25(x, arr) {
switch (x) {
default :
arr.push(304532507);
break ;
case 'foo' :
case 'bar' :
arr.push(1915689729);
break ;
case 'zing' :
arr.push(973913896);
break ;
}
}
test_25.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_25);
function test_26(x, arr) {
switch (x) {
case 'foo' :
default :
arr.push(304532507);
break ;
case 'bar' :
arr.push(1915689729);
break ;
case 'zing' :
arr.push(973913896);
break ;
}
}
test_26.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_26);
function test_27(x, arr) {
switch (x) {
case 'foo' :
case 'bar' :
arr.push(1915689729);
break ;
case 'zing' :
arr.push(973913896);
break ;
default :
arr.push(304532507);
break ;
}
}
test_27.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_27);
function test_28(x, arr) {
switch (x) {
default :
case 'foo' :
arr.push(2116660419);
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('FvxWZ' );
break ;
}
}
test_28.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_28);
function test_29(x, arr) {
switch (x) {
case 'foo' :
arr.push(2116660419);
break ;
default :
case 'bar' :
break ;
case 'zing' :
arr.push('FvxWZ' );
break ;
}
}
test_29.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_29);
function test_30(x, arr) {
switch (x) {
case 'foo' :
arr.push(2116660419);
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('FvxWZ' );
break ;
default :
}
}
test_30.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_30);
function test_31(x, arr) {
switch (x) {
default :
arr.push(121730727);
case 'foo' :
arr.push(2116660419);
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('FvxWZ' );
break ;
}
}
test_31.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_31);
function test_32(x, arr) {
switch (x) {
case 'foo' :
arr.push(2116660419);
break ;
default :
arr.push(121730727);
case 'bar' :
break ;
case 'zing' :
arr.push('FvxWZ' );
break ;
}
}
test_32.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_32);
function test_33(x, arr) {
switch (x) {
case 'foo' :
arr.push(2116660419);
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('FvxWZ' );
break ;
default :
arr.push(121730727);
}
}
test_33.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_33);
function test_34(x, arr) {
switch (x) {
default :
arr.push(1614107154);
break ;
case 'foo' :
arr.push(2116660419);
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('FvxWZ' );
break ;
}
}
test_34.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_34);
function test_35(x, arr) {
switch (x) {
case 'foo' :
arr.push(2116660419);
break ;
default :
arr.push(1614107154);
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('FvxWZ' );
break ;
}
}
test_35.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_35);
function test_36(x, arr) {
switch (x) {
case 'foo' :
arr.push(2116660419);
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('FvxWZ' );
break ;
default :
arr.push(1614107154);
break ;
}
}
test_36.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_36);
function test_37(x, arr) {
switch (x) {
default :
case 'foo' :
arr.push('-=Z' );
break ;
case 'bar' :
case 'zing' :
arr.push('R8f' );
break ;
}
}
test_37.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_37);
function test_38(x, arr) {
switch (x) {
case 'foo' :
arr.push('-=Z' );
break ;
default :
case 'bar' :
case 'zing' :
arr.push('R8f' );
break ;
}
}
test_38.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_38);
function test_39(x, arr) {
switch (x) {
case 'foo' :
arr.push('-=Z' );
break ;
case 'bar' :
case 'zing' :
arr.push('R8f' );
break ;
default :
}
}
test_39.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_39);
function test_40(x, arr) {
switch (x) {
default :
arr.push('XfrKO0' );
case 'foo' :
arr.push('-=Z' );
break ;
case 'bar' :
case 'zing' :
arr.push('R8f' );
break ;
}
}
test_40.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_40);
function test_41(x, arr) {
switch (x) {
case 'foo' :
arr.push('-=Z' );
break ;
default :
arr.push('XfrKO0' );
case 'bar' :
case 'zing' :
arr.push('R8f' );
break ;
}
}
test_41.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_41);
function test_42(x, arr) {
switch (x) {
case 'foo' :
arr.push('-=Z' );
break ;
case 'bar' :
case 'zing' :
arr.push('R8f' );
break ;
default :
arr.push('XfrKO0' );
}
}
test_42.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_42);
function test_43(x, arr) {
switch (x) {
default :
arr.push(465477587);
break ;
case 'foo' :
arr.push('-=Z' );
break ;
case 'bar' :
case 'zing' :
arr.push('R8f' );
break ;
}
}
test_43.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_43);
function test_44(x, arr) {
switch (x) {
case 'foo' :
arr.push('-=Z' );
break ;
default :
arr.push(465477587);
break ;
case 'bar' :
case 'zing' :
arr.push('R8f' );
break ;
}
}
test_44.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_44);
function test_45(x, arr) {
switch (x) {
case 'foo' :
arr.push('-=Z' );
break ;
case 'bar' :
case 'zing' :
arr.push('R8f' );
break ;
default :
arr.push(465477587);
break ;
}
}
test_45.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_45);
function test_46(x, arr) {
switch (x) {
default :
case 'foo' :
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('(0' );
break ;
}
}
test_46.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_46);
function test_47(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
case 'bar' :
break ;
case 'zing' :
arr.push('(0' );
break ;
}
}
test_47.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_47);
function test_48(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('(0' );
break ;
default :
}
}
test_48.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_48);
function test_49(x, arr) {
switch (x) {
default :
arr.push('{5J~&%)kV' );
case 'foo' :
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('(0' );
break ;
}
}
test_49.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_49);
function test_50(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
arr.push('{5J~&%)kV' );
case 'bar' :
break ;
case 'zing' :
arr.push('(0' );
break ;
}
}
test_50.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_50);
function test_51(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('(0' );
break ;
default :
arr.push('{5J~&%)kV' );
}
}
test_51.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_51);
function test_52(x, arr) {
switch (x) {
default :
arr.push('V^IbL' );
break ;
case 'foo' :
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('(0' );
break ;
}
}
test_52.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_52);
function test_53(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
arr.push('V^IbL' );
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('(0' );
break ;
}
}
test_53.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_53);
function test_54(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('(0' );
break ;
default :
arr.push('V^IbL' );
break ;
}
}
test_54.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_54);
function test_55(x, arr) {
switch (x) {
default :
case 'foo' :
case 'bar' :
break ;
case 'zing' :
arr.push('4' );
break ;
}
}
test_55.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_55);
function test_56(x, arr) {
switch (x) {
case 'foo' :
default :
case 'bar' :
break ;
case 'zing' :
arr.push('4' );
break ;
}
}
test_56.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_56);
function test_57(x, arr) {
switch (x) {
case 'foo' :
case 'bar' :
break ;
case 'zing' :
arr.push('4' );
break ;
default :
}
}
test_57.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_57);
function test_58(x, arr) {
switch (x) {
default :
arr.push('K' );
case 'foo' :
case 'bar' :
break ;
case 'zing' :
arr.push('4' );
break ;
}
}
test_58.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_58);
function test_59(x, arr) {
switch (x) {
case 'foo' :
default :
arr.push('K' );
case 'bar' :
break ;
case 'zing' :
arr.push('4' );
break ;
}
}
test_59.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_59);
function test_60(x, arr) {
switch (x) {
case 'foo' :
case 'bar' :
break ;
case 'zing' :
arr.push('4' );
break ;
default :
arr.push('K' );
}
}
test_60.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_60);
function test_61(x, arr) {
switch (x) {
default :
arr.push(129591787);
break ;
case 'foo' :
case 'bar' :
break ;
case 'zing' :
arr.push('4' );
break ;
}
}
test_61.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_61);
function test_62(x, arr) {
switch (x) {
case 'foo' :
default :
arr.push(129591787);
break ;
case 'bar' :
break ;
case 'zing' :
arr.push('4' );
break ;
}
}
test_62.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_62);
function test_63(x, arr) {
switch (x) {
case 'foo' :
case 'bar' :
break ;
case 'zing' :
arr.push('4' );
break ;
default :
arr.push(129591787);
break ;
}
}
test_63.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_63);
function test_64(x, arr) {
switch (x) {
default :
case 'foo' :
break ;
case 'bar' :
case 'zing' :
arr.push(60518010);
break ;
}
}
test_64.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_64);
function test_65(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
case 'bar' :
case 'zing' :
arr.push(60518010);
break ;
}
}
test_65.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_65);
function test_66(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
case 'zing' :
arr.push(60518010);
break ;
default :
}
}
test_66.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_66);
function test_67(x, arr) {
switch (x) {
default :
arr.push('0]YO]}' );
case 'foo' :
break ;
case 'bar' :
case 'zing' :
arr.push(60518010);
break ;
}
}
test_67.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_67);
function test_68(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
arr.push('0]YO]}' );
case 'bar' :
case 'zing' :
arr.push(60518010);
break ;
}
}
test_68.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_68);
function test_69(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
case 'zing' :
arr.push(60518010);
break ;
default :
arr.push('0]YO]}' );
}
}
test_69.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_69);
function test_70(x, arr) {
switch (x) {
default :
arr.push(1222888797);
break ;
case 'foo' :
break ;
case 'bar' :
case 'zing' :
arr.push(60518010);
break ;
}
}
test_70.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_70);
function test_71(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
arr.push(1222888797);
break ;
case 'bar' :
case 'zing' :
arr.push(60518010);
break ;
}
}
test_71.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_71);
function test_72(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
case 'zing' :
arr.push(60518010);
break ;
default :
arr.push(1222888797);
break ;
}
}
test_72.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_72);
function test_73(x, arr) {
switch (x) {
default :
case 'foo' :
case 'bar' :
case 'zing' :
arr.push('ku]^x' );
break ;
}
}
test_73.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_73);
function test_74(x, arr) {
switch (x) {
case 'foo' :
default :
case 'bar' :
case 'zing' :
arr.push('ku]^x' );
break ;
}
}
test_74.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_74);
function test_75(x, arr) {
switch (x) {
case 'foo' :
case 'bar' :
case 'zing' :
arr.push('ku]^x' );
break ;
default :
}
}
test_75.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_75);
function test_76(x, arr) {
switch (x) {
default :
arr.push(1697959342);
case 'foo' :
case 'bar' :
case 'zing' :
arr.push('ku]^x' );
break ;
}
}
test_76.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_76);
function test_77(x, arr) {
switch (x) {
case 'foo' :
default :
arr.push(1697959342);
case 'bar' :
case 'zing' :
arr.push('ku]^x' );
break ;
}
}
test_77.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_77);
function test_78(x, arr) {
switch (x) {
case 'foo' :
case 'bar' :
case 'zing' :
arr.push('ku]^x' );
break ;
default :
arr.push(1697959342);
}
}
test_78.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_78);
function test_79(x, arr) {
switch (x) {
default :
arr.push(2023306409);
break ;
case 'foo' :
case 'bar' :
case 'zing' :
arr.push('ku]^x' );
break ;
}
}
test_79.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_79);
function test_80(x, arr) {
switch (x) {
case 'foo' :
default :
arr.push(2023306409);
break ;
case 'bar' :
case 'zing' :
arr.push('ku]^x' );
break ;
}
}
test_80.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_80);
function test_81(x, arr) {
switch (x) {
case 'foo' :
case 'bar' :
case 'zing' :
arr.push('ku]^x' );
break ;
default :
arr.push(2023306409);
break ;
}
}
test_81.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_81);
function test_82(x, arr) {
switch (x) {
default :
case 'foo' :
arr.push(588167318);
break ;
case 'bar' :
arr.push(663884613);
break ;
case 'zing' :
break ;
}
}
test_82.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_82);
function test_83(x, arr) {
switch (x) {
case 'foo' :
arr.push(588167318);
break ;
default :
case 'bar' :
arr.push(663884613);
break ;
case 'zing' :
break ;
}
}
test_83.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_83);
function test_84(x, arr) {
switch (x) {
case 'foo' :
arr.push(588167318);
break ;
case 'bar' :
arr.push(663884613);
break ;
case 'zing' :
break ;
default :
}
}
test_84.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_84);
function test_85(x, arr) {
switch (x) {
default :
arr.push(1238869146);
case 'foo' :
arr.push(588167318);
break ;
case 'bar' :
arr.push(663884613);
break ;
case 'zing' :
break ;
}
}
test_85.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_85);
function test_86(x, arr) {
switch (x) {
case 'foo' :
arr.push(588167318);
break ;
default :
arr.push(1238869146);
case 'bar' :
arr.push(663884613);
break ;
case 'zing' :
break ;
}
}
test_86.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_86);
function test_87(x, arr) {
switch (x) {
case 'foo' :
arr.push(588167318);
break ;
case 'bar' :
arr.push(663884613);
break ;
case 'zing' :
break ;
default :
arr.push(1238869146);
}
}
test_87.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_87);
function test_88(x, arr) {
switch (x) {
default :
arr.push('pOh#' );
break ;
case 'foo' :
arr.push(588167318);
break ;
case 'bar' :
arr.push(663884613);
break ;
case 'zing' :
break ;
}
}
test_88.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_88);
function test_89(x, arr) {
switch (x) {
case 'foo' :
arr.push(588167318);
break ;
default :
arr.push('pOh#' );
break ;
case 'bar' :
arr.push(663884613);
break ;
case 'zing' :
break ;
}
}
test_89.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_89);
function test_90(x, arr) {
switch (x) {
case 'foo' :
arr.push(588167318);
break ;
case 'bar' :
arr.push(663884613);
break ;
case 'zing' :
break ;
default :
arr.push('pOh#' );
break ;
}
}
test_90.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_90);
function test_91(x, arr) {
switch (x) {
default :
case 'foo' :
arr.push('Z!I#t' );
break ;
case 'bar' :
arr.push('D' );
break ;
case 'zing' :
}
}
test_91.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_91);
function test_92(x, arr) {
switch (x) {
case 'foo' :
arr.push('Z!I#t' );
break ;
default :
case 'bar' :
arr.push('D' );
break ;
case 'zing' :
}
}
test_92.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_92);
function test_93(x, arr) {
switch (x) {
case 'foo' :
arr.push('Z!I#t' );
break ;
case 'bar' :
arr.push('D' );
break ;
case 'zing' :
default :
}
}
test_93.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_93);
function test_94(x, arr) {
switch (x) {
default :
arr.push(63474909);
case 'foo' :
arr.push('Z!I#t' );
break ;
case 'bar' :
arr.push('D' );
break ;
case 'zing' :
}
}
test_94.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_94);
function test_95(x, arr) {
switch (x) {
case 'foo' :
arr.push('Z!I#t' );
break ;
default :
arr.push(63474909);
case 'bar' :
arr.push('D' );
break ;
case 'zing' :
}
}
test_95.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_95);
function test_96(x, arr) {
switch (x) {
case 'foo' :
arr.push('Z!I#t' );
break ;
case 'bar' :
arr.push('D' );
break ;
case 'zing' :
default :
arr.push(63474909);
}
}
test_96.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_96);
function test_97(x, arr) {
switch (x) {
default :
arr.push(1165220694);
break ;
case 'foo' :
arr.push('Z!I#t' );
break ;
case 'bar' :
arr.push('D' );
break ;
case 'zing' :
}
}
test_97.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_97);
function test_98(x, arr) {
switch (x) {
case 'foo' :
arr.push('Z!I#t' );
break ;
default :
arr.push(1165220694);
break ;
case 'bar' :
arr.push('D' );
break ;
case 'zing' :
}
}
test_98.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_98);
function test_99(x, arr) {
switch (x) {
case 'foo' :
arr.push('Z!I#t' );
break ;
case 'bar' :
arr.push('D' );
break ;
case 'zing' :
default :
arr.push(1165220694);
break ;
}
}
test_99.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_99);
function test_100(x, arr) {
switch (x) {
default :
case 'foo' :
break ;
case 'bar' :
arr.push(1994756408);
break ;
case 'zing' :
break ;
}
}
test_100.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_100);
function test_101(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
case 'bar' :
arr.push(1994756408);
break ;
case 'zing' :
break ;
}
}
test_101.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_101);
function test_102(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
arr.push(1994756408);
break ;
case 'zing' :
break ;
default :
}
}
test_102.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_102);
function test_103(x, arr) {
switch (x) {
default :
arr.push('*8ZYmVI($X' );
case 'foo' :
break ;
case 'bar' :
arr.push(1994756408);
break ;
case 'zing' :
break ;
}
}
test_103.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_103);
function test_104(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
arr.push('*8ZYmVI($X' );
case 'bar' :
arr.push(1994756408);
break ;
case 'zing' :
break ;
}
}
test_104.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_104);
function test_105(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
arr.push(1994756408);
break ;
case 'zing' :
break ;
default :
arr.push('*8ZYmVI($X' );
}
}
test_105.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_105);
function test_106(x, arr) {
switch (x) {
default :
arr.push(207183901);
break ;
case 'foo' :
break ;
case 'bar' :
arr.push(1994756408);
break ;
case 'zing' :
break ;
}
}
test_106.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_106);
function test_107(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
arr.push(207183901);
break ;
case 'bar' :
arr.push(1994756408);
break ;
case 'zing' :
break ;
}
}
test_107.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_107);
function test_108(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
arr.push(1994756408);
break ;
case 'zing' :
break ;
default :
arr.push(207183901);
break ;
}
}
test_108.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_108);
function test_109(x, arr) {
switch (x) {
default :
case 'foo' :
case 'bar' :
arr.push('YJQk' );
break ;
case 'zing' :
break ;
}
}
test_109.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_109);
function test_110(x, arr) {
switch (x) {
case 'foo' :
default :
case 'bar' :
arr.push('YJQk' );
break ;
case 'zing' :
break ;
}
}
test_110.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_110);
function test_111(x, arr) {
switch (x) {
case 'foo' :
case 'bar' :
arr.push('YJQk' );
break ;
case 'zing' :
break ;
default :
}
}
test_111.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_111);
function test_112(x, arr) {
switch (x) {
default :
arr.push('04mJy' );
case 'foo' :
case 'bar' :
arr.push('YJQk' );
break ;
case 'zing' :
break ;
}
}
test_112.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_112);
function test_113(x, arr) {
switch (x) {
case 'foo' :
default :
arr.push('04mJy' );
case 'bar' :
arr.push('YJQk' );
break ;
case 'zing' :
break ;
}
}
test_113.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_113);
function test_114(x, arr) {
switch (x) {
case 'foo' :
case 'bar' :
arr.push('YJQk' );
break ;
case 'zing' :
break ;
default :
arr.push('04mJy' );
}
}
test_114.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_114);
function test_115(x, arr) {
switch (x) {
default :
arr.push('0NgLbYKr~c' );
break ;
case 'foo' :
case 'bar' :
arr.push('YJQk' );
break ;
case 'zing' :
break ;
}
}
test_115.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_115);
function test_116(x, arr) {
switch (x) {
case 'foo' :
default :
arr.push('0NgLbYKr~c' );
break ;
case 'bar' :
arr.push('YJQk' );
break ;
case 'zing' :
break ;
}
}
test_116.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_116);
function test_117(x, arr) {
switch (x) {
case 'foo' :
case 'bar' :
arr.push('YJQk' );
break ;
case 'zing' :
break ;
default :
arr.push('0NgLbYKr~c' );
break ;
}
}
test_117.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_117);
function test_118(x, arr) {
switch (x) {
default :
case 'foo' :
break ;
case 'bar' :
arr.push('[^U}J^z' );
break ;
case 'zing' :
}
}
test_118.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_118);
function test_119(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
case 'bar' :
arr.push('[^U}J^z' );
break ;
case 'zing' :
}
}
test_119.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_119);
function test_120(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
arr.push('[^U}J^z' );
break ;
case 'zing' :
default :
}
}
test_120.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_120);
function test_121(x, arr) {
switch (x) {
default :
arr.push('Y' );
case 'foo' :
break ;
case 'bar' :
arr.push('[^U}J^z' );
break ;
case 'zing' :
}
}
test_121.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_121);
function test_122(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
arr.push('Y' );
case 'bar' :
arr.push('[^U}J^z' );
break ;
case 'zing' :
}
}
test_122.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_122);
function test_123(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
arr.push('[^U}J^z' );
break ;
case 'zing' :
default :
arr.push('Y' );
}
}
test_123.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_123);
function test_124(x, arr) {
switch (x) {
default :
arr.push(279382281);
break ;
case 'foo' :
break ;
case 'bar' :
arr.push('[^U}J^z' );
break ;
case 'zing' :
}
}
test_124.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_124);
function test_125(x, arr) {
switch (x) {
case 'foo' :
break ;
default :
arr.push(279382281);
break ;
case 'bar' :
arr.push('[^U}J^z' );
break ;
case 'zing' :
}
}
test_125.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_125);
function test_126(x, arr) {
switch (x) {
case 'foo' :
break ;
case 'bar' :
arr.push('[^U}J^z' );
break ;
case 'zing' :
default :
arr.push(279382281);
break ;
}
}
test_126.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_126);
function test_127(x, arr) {
switch (x) {
default :
case 'foo' :
case 'bar' :
arr.push('7+leA1' );
break ;
case 'zing' :
}
}
test_127.INPUTS = ['foo' , 'bar' , 'zing' ];
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 }];
TESTS.push(test_127);
function test_128(x, arr) {
switch (x) {
case 'foo' :
default :
case 'bar' :
arr.push('7+leA1' );
break ;
case 'zing' :
}
}
test_128.INPUTS = ['foo' , 'bar' , 'zing' ];
--> --------------------
--> maximum size reached
--> --------------------
Messung V0.5 C=99 H=68 G=84
¤ Dauer der Verarbeitung: 0.38 Sekunden
(vorverarbeitet)
¤
*© Formatika GbR, Deutschland