summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug650658.js
blob: b706ecb9dd0f6984e1bf3b1062d64c6acc2d1b16 (plain)
1
2
3
4
5
6
7
8
9
10
// |jit-test| error:TypeError

// Binary: cache/js-dbg-64-ac0989a03bf1-linux
// Flags: -m -n -a
//
AddRegExpCases(/a*b/, "xxx", 0, null );
AddRegExpCases(/x\d\dy/, "abcx45ysss235", 3,[] );
function AddRegExpCases(regexp, pattern, index, matches_array ) {
    return (matches_array.length, regexp);
}